7 lines
120 B
Python
7 lines
120 B
Python
|
from django.urls import path
|
||
|
|
||
|
from bds import views
|
||
|
|
||
|
app_name = "bds"
|
||
|
urlpatterns = [path("", views.home, name="home")]
|