コード例 #1
0
 def put(self, student_id):
     response = update_student(student_id, request.json)
     return response_format(response)
コード例 #2
0
 def delete(self, student_id):
     response = delete_student(student_id)
     if response:
         return response_format(response)
コード例 #3
0
 def get(self, student_id):
     response = get_student(student_id)
     return response_format(response)