mirror of
https://github.com/Hopiu/django.git
synced 2026-05-01 04:04:54 +00:00
7 lines
121 B
Python
7 lines
121 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('index/', views.index_page, name='index'),
|
|
]
|