# app/platforms/__init__.py """ Platform-specific code and configurations. Each platform (OMS, Loyalty, etc.) has its own: - routes/: Platform-specific routes - templates/: Platform-specific templates - config.py: Platform configuration Shared code that applies to all platforms lives in shared/. """ from .shared.base_platform import BasePlatformConfig __all__ = ["BasePlatformConfig"]