10 lines
194 B
Python
10 lines
194 B
Python
from django.urls import include, path
|
|
|
|
from .views import index
|
|
|
|
app_name = "backend"
|
|
urlpatterns = [
|
|
path("", index, name="index"),
|
|
path("members/", include("backend.members.urls")),
|
|
]
|