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