mirror of
https://github.com/lemeow125/Borrowing-TrackerBackend.git
synced 2024-11-17 06:19:26 +08:00
10 lines
370 B
Python
10 lines
370 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from accounts import views
|
|
urlpatterns = [
|
|
path('', include('djoser.urls')),
|
|
path('', include('djoser.urls.jwt')),
|
|
path('clearance/', views.ClearanceViewSet.as_view()),
|
|
path('teachers/', views.TeacherViewSet.as_view()),
|
|
path('technicians/', views.TechnicianViewSet.as_view()),
|
|
]
|