#!/usr/bin/env python3
"""
AnySecret CLI Launcher (New Implementation)
"""

import sys
from pathlib import Path

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

# Import and run the new CLI
from anysecret.cli.cli import run_cli

if __name__ == "__main__":
    run_cli()