mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 08:51:09 -05:00
Refactor code structure and remove redundant changes
This commit is contained in:
12
backend/api/urls.py
Normal file
12
backend/api/urls.py
Normal file
@@ -0,0 +1,12 @@
|
||||
"""
|
||||
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')),
|
||||
]
|
||||
Reference in New Issue
Block a user