django-template/apps/website/urls.py

7 lines
117 B
Python
Raw Normal View History

2022-08-02 09:04:23 +02:00
from django.urls import path
2022-08-02 09:06:45 +02:00
from apps.website.views import home
2022-08-02 09:04:23 +02:00
urlpatterns = [
path("", home, name="home"),
]