mirror of
https://github.com/Rushilwiz/tj2023.git
synced 2025-04-19 03:20:18 -04:00
7 lines
108 B
Python
7 lines
108 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name="index")
|
|
]
|