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