mirror of
https://github.com/Rushilwiz/SkoolOS.git
synced 2025-04-18 11:20:19 -04:00
10 lines
221 B
Python
10 lines
221 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
# Additionally, we include login URLs for the browsable API.
|
|
urlpatterns = [
|
|
path('', views.home, name='home'),
|
|
path('profile/', views.profile, name='profile')
|
|
]
|