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