mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 02:31:08 -05:00
13 lines
241 B
Python
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')),
|
|
]
|