# -*- coding: utf-8 -*-
"""
Adtlas Core API URL Configuration

API endpoints for the core functionality of the Adtlas DAI Management System.
This module defines RESTful API routes for:

- Dashboard statistics
- System health checks
- Configuration management
- Activity logs

Author: Adtlas Development Team
Version: 2.0.0
Last Updated: 2025-01-01
"""

from django.urls import path, include
from apps.core.landing_views import dashboard_stats_api
from apps.core.health import health_check

app_name = 'core_api'

urlpatterns = [
    # Health and monitoring endpoints
    # path('health/', health_check, name='health_check'),
    # path('dashboard/stats/', dashboard_stats_api, name='dashboard_stats'),
    
    # # Include other app API URLs
    # path('accounts/', include('apps.accounts.api.urls')),
    # path('campaigns/', include('apps.campaigns.api.urls')),
    # path('advertisers/', include('apps.advertisers.api.urls')),
    # path('channels/', include('apps.channels.api.urls')),
    # path('playlists/', include('apps.playlists.api.urls')),
    # path('analytics/', include('apps.analytics.api.urls')),
    # path('vast/', include('apps.vast.api.urls')),
]