2025-11-25 20:09:33 -08:00
|
|
|
"""Entry point wrapper for Medeia-Macina CLI."""
|
|
|
|
|
import sys
|
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
|
|
# Add the current directory to sys.path so we can import CLI
|
|
|
|
|
root_dir = Path(__file__).parent
|
|
|
|
|
if str(root_dir) not in sys.path:
|
|
|
|
|
sys.path.insert(0, str(root_dir))
|
|
|
|
|
|
2025-12-20 02:12:45 -08:00
|
|
|
from CLI import MedeiaCLI
|
2025-11-25 20:09:33 -08:00
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2025-12-20 02:12:45 -08:00
|
|
|
MedeiaCLI().run()
|