django-template/app/public/urls.py

8 lines
116 B
Python
Raw Normal View History

2022-08-02 09:04:23 +02:00
from django.urls import path
2023-07-21 10:07:51 +02:00
from app.public.views import home
2022-08-02 09:04:23 +02:00
urlpatterns = [
path("", home, name="home"),
2023-07-21 10:07:51 +02:00
]