Refactor code structure and remove redundant changes

This commit is contained in:
pacnpal
2025-08-26 13:19:04 -04:00
parent bf7e0c0f40
commit 831be6a2ee
151 changed files with 16260 additions and 9137 deletions

19
backend/api/v1/urls.py Normal file
View File

@@ -0,0 +1,19 @@
"""
Version 1 API URL router for ThrillWiki.
This module routes API requests to domain-specific endpoints.
All domain endpoints are organized in their respective subdirectories.
"""
from django.urls import path, include
urlpatterns = [
# Domain-specific API endpoints
path('rides/', include('api.v1.rides.urls')),
path('parks/', include('api.v1.parks.urls')),
path('auth/', include('api.v1.auth.urls')),
# Media endpoints (for photo management)
# Will be consolidated from the various media implementations
path('media/', include('api.v1.media.urls')),
]