mirror of
https://github.com/lemeow125/InfoTech-Backend.git
synced 2024-11-17 06:29:26 +08:00
8 lines
227 B
Python
8 lines
227 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
|
|
urlpatterns = [
|
|
path('', include('subjects.urls')),
|
|
path('', include('students.urls')),
|
|
path('accounts/', include('accounts.urls')),
|
|
]
|