tony92151's picture
refactor
122e32d unverified
raw
history blame contribute delete
237 Bytes
#!/usr/bin/env python3
"""
Yahoo Finance CSV Converter - Command Line Interface
This is the main entry point for the command-line interface.
"""
import sys
from src.cli.main import main
if __name__ == "__main__":
sys.exit(main())