added run script

This commit is contained in:
Mikhail Tergoev
2025-03-05 01:12:00 +03:00
parent a43406030b
commit e2d3b0218d
2 changed files with 26 additions and 1 deletions

15
portproton.py Executable file
View File

@ -0,0 +1,15 @@
#!/usr/bin/env python3
from modules.log import *
from modules.env_var import *
from modules.files_worker import *
from modules.downloader import *
data_path = get_env_var("DATA_PATH")
work_path = get_env_var("WORK_PATH")
if __name__ == "__main__":
log.info(data_path)
log.info(work_path)
log.info(sys.argv[1:])