8 lines
116 B
Python
8 lines
116 B
Python
from django.urls import path
|
|
|
|
from app.public.views import home
|
|
|
|
urlpatterns = [
|
|
path("", home, name="home"),
|
|
]
|