Fix some APIs

This commit is contained in:
2025-09-02 23:14:14 +09:00
parent 9f27357a3b
commit 8ffedc177f
11 changed files with 974 additions and 287 deletions

7
test_simple_route.py Normal file
View File

@ -0,0 +1,7 @@
@api_view(['GET'])
def get_route_simple(request):
"""テスト用の簡単なルート取得関数"""
return Response({
"status": "OK",
"message": "Simple route function is working"
})