Reviewed-on: #53 Co-authored-by: David Gwilliam <dhgwilliam@gmail.com> Co-committed-by: David Gwilliam <dhgwilliam@gmail.com>
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()
|