forked from genewildish/Mainline
Major changes: - Pipeline architecture with capability-based dependency resolution - Effects plugin system with performance monitoring - Display abstraction with multiple backends (terminal, null, websocket) - Camera system for viewport scrolling - Sensor framework for real-time input - Command-and-control system via ntfy - WebSocket display backend for browser clients - Comprehensive test suite and documentation Issue #48: ADR for preset scripting language included This commit consolidates 110 individual commits into a single feature integration that can be reviewed and tested before further refinement.
15 lines
421 B
Python
15 lines
421 B
Python
"""
|
|
Application orchestrator — pipeline mode entry point.
|
|
|
|
This module provides the main entry point for the application.
|
|
The implementation has been refactored into the engine.app package.
|
|
"""
|
|
|
|
# Re-export from the new package structure
|
|
from engine.app import main, run_pipeline_mode, run_pipeline_mode_direct
|
|
|
|
__all__ = ["main", "run_pipeline_mode", "run_pipeline_mode_direct"]
|
|
|
|
if __name__ == "__main__":
|
|
main()
|