9 lines
146 B
Python
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'),
|
|
]
|