"""Core App

This is the core application that contains shared functionality, utilities,
and common components used across the entire Adtlas project.

Components:
- Models: Base models, common fields, and shared data structures
- Views: Base views, mixins, and common view functionality
- Utils: Utility functions, helpers, and common operations
- Middleware: Custom middleware for request/response processing
- Context Processors: Template context processors
- Templatetags: Custom template tags and filters
- Management Commands: Custom Django management commands
- Signals: Django signals and handlers
- Decorators: Custom decorators for views and functions
- Validators: Custom field validators
- Permissions: Custom permission classes
- Pagination: Custom pagination classes
- Serializers: Base serializers for API responses
- Exceptions: Custom exception classes
- Constants: Application-wide constants and configurations
"""

default_app_config = 'apps.core.apps.CoreConfig'