File size: 235 Bytes
21fd477
 
583741e
21fd477
583741e
 
21fd477
583741e
 
21fd477
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import os
import sys
from pathlib import Path

# Add the src directory to Python path
sys.path.insert(0, str(Path(__file__).parent / "src"))

# Import and run the CLI
from src.cli.cli import main

if __name__ == "__main__":
    main()