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