""" URL configuration for Rides API following Django styleguide patterns. """ from django.urls import path, include from rest_framework.routers import DefaultRouter # Note: We'll create the views file after this # from .views import RideApi app_name = 'rides_api' # Placeholder for future implementation urlpatterns = [ # Will be implemented in next phase # path('v1/', include(router.urls)), ]