feat(application-form-fill): 新增模板配置骨架

This commit is contained in:
2026-06-07 18:23:06 +08:00
parent 74cbe349a8
commit e48d44f832
10 changed files with 479 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
from django.http import JsonResponse
from django.views.decorators.http import require_http_methods
@require_http_methods(["GET"])
def health(request):
return JsonResponse({"workflow_type": "application_form_fill", "status": "available"})