10 lines
248 B
Python
10 lines
248 B
Python
from __future__ import annotations
|
|
|
|
import runpy
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
if __name__ == '__main__':
|
|
sys.path.insert(0, str(Path(__file__).resolve().parent / 'src'))
|
|
runpy.run_module('yt_shorts_downloader', run_name='__main__')
|