8 lines
106 B
Python
8 lines
106 B
Python
from django.urls import path
|
|
|
|
from .views import home
|
|
|
|
urlpatterns = [
|
|
path('', home, name='home'),
|
|
]
|