Files
2024-05-16 18:41:04 +02:00

9 lines
146 B
Python

from django.urls import path
from .views import HomeView
app_name = "app_site"
urlpatterns = [
path('', HomeView.as_view(), name='home'),
]