8 lines
181 B
Python
8 lines
181 B
Python
|
|
from django.urls import path
|
||
|
|
from . import views
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path("faq/", views.FaqListAPIView.as_view()),
|
||
|
|
path("organization/", views.OrganizationAPIView.as_view())
|
||
|
|
]
|