mirror of
https://github.com/lemeow125/DocManagerBackend.git
synced 2025-01-19 01:23:02 +08:00
11 lines
250 B
Python
11 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()),
|
||
|
]
|