mirror of
https://github.com/lemeow125/InfoTech-Backend.git
synced 2024-11-17 06:29:26 +08:00
10 lines
312 B
Python
10 lines
312 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('accounts/', include('accounts.urls')),
|
|
]
|