django-template/app/public/urls.py
Andros Fenollosa 516483c865 Fix old code
2023-07-21 10:07:51 +02:00

8 lines
116 B
Python

from django.urls import path
from app.public.views import home
urlpatterns = [
path("", home, name="home"),
]