Files
thrillwiki_django_no_react/backend/api/urls.py

13 lines
241 B
Python

"""
Main API router for ThrillWiki.
This module routes all API requests to the appropriate version.
Currently supports v1 API endpoints.
"""
from django.urls import path, include
urlpatterns = [
path('v1/', include('api.v1.urls')),
]