12 lines
238 B
Python
12 lines
238 B
Python
from __future__ import annotations
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
sys.path.insert(0, str(Path(__file__).resolve().parent / "src"))
|
|
|
|
from yt_shorts_downloader.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|