mirror of
https://github.com/lemeow125/DocManagerBackend.git
synced 2025-02-23 14:38:13 +08:00
10 lines
250 B
Python
10 lines
250 B
Python
from django.urls import include, path
|
|
from .views import (
|
|
QuestionnaireListAPIView,
|
|
QuestionnaireSubmitView,
|
|
)
|
|
|
|
urlpatterns = [
|
|
path("submit/", QuestionnaireSubmitView.as_view()),
|
|
path("list/", QuestionnaireListAPIView.as_view()),
|
|
]
|