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