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