Big-Link-Man/main.py

18 lines
300 B
Python

#!/usr/bin/env python3
"""
Content Automation & Syndication Platform
Main CLI entry point
"""
import sys
from pathlib import Path
# Add src to Python path
src_path = Path(__file__).parent / "src"
sys.path.insert(0, str(src_path))
from cli.commands import app
if __name__ == "__main__":
app()