Init
This commit is contained in:
8
app/db/urls.py
Normal file
8
app/db/urls.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from django.urls import path
|
||||
|
||||
from .views import IndexView
|
||||
|
||||
app_name = 'db'
|
||||
urlpatterns = [
|
||||
path("", IndexView.as_view(), name='index'),
|
||||
]
|
||||
Reference in New Issue
Block a user