mirror of
https://github.com/Balshgit/public.git
synced 2025-09-11 18:00:42 +03:00
10 lines
150 B
Python
10 lines
150 B
Python
from django.urls import path
|
|
|
|
from server.apps.main.views import index
|
|
|
|
app_name = 'main'
|
|
|
|
urlpatterns = [
|
|
path('hello/', index, name='hello'),
|
|
]
|