7 lines
123 B
Python
7 lines
123 B
Python
from django.urls import path
|
|
from .views import HomeView
|
|
|
|
urlpatterns = [
|
|
path("", HomeView.as_view(), name="home"),
|
|
]
|