django-template/apps/website/urls.py
jnfire bb5423fcc4 add first url
add first url
2022-08-02 09:04:23 +02:00

7 lines
113 B
Python

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