mirror of
https://github.com/lemeow125/InfoTech-Backend.git
synced 2025-01-19 07:13:04 +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')),
|
|
]
|