Files
TeamForge/backend/urls.py

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")),
]