私はこれをやろうとしています:
@get("/admin/questions/:question_id")
def question (question_id):
pass
#Some code for returning the question
@put("/admin/questions/:question_id")
pass
#I intend to write some code to update the question here.
これは可能ですか?GET と POST は機能しますが、PUT は明らかに機能していません。