InfoTech-Backend/infotech/api/urls.py

11 lines
312 B
Python
Raw Normal View History

2023-03-21 21:04:26 +08:00
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
2023-03-21 21:22:14 +08:00
path('', include('subjects.urls')),
2023-03-21 21:49:26 +08:00
path('', include('students.urls')),
path('', include('professors.urls')),
path('', include('schedules.urls')),
2023-03-21 21:22:14 +08:00
path('accounts/', include('accounts.urls')),
2023-03-21 21:04:26 +08:00
]