- Replace estimate_block_height (PIL-based) with estimate_simple_height (word wrap) - Update viewport filter tests to match new height-based filtering (~4 items vs 24) - Fix CI task duplication in mise.toml (remove redundant depends) Closes #38 Closes #36
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()
|