mirror of
https://github.com/lemeow125/InfoTech-Backend.git
synced 2024-11-16 22:19:25 +08:00
11 lines
353 B
Python
11 lines
353 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
|
|
urlpatterns = [
|
|
path('', include('subjects.urls')),
|
|
path('', include('students.urls')),
|
|
path('', include('professors.urls')),
|
|
path('', include('schedules.urls')),
|
|
path('', include('daytimes.urls')),
|
|
path('accounts/', include('accounts.urls')),
|
|
]
|