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()), ]