10 lines
125 B
Python
10 lines
125 B
Python
from django.urls import path
|
|
|
|
from .views import home
|
|
|
|
app_name = "core"
|
|
|
|
urlpatterns = [
|
|
path("", home, name="home"),
|
|
]
|