mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-07 12:05:35 +00:00
14 lines
371 B
Python
14 lines
371 B
Python
# 26.11.24
|
|
|
|
import sys
|
|
from StreamingCommunity.run import main
|
|
from StreamingCommunity.HelpTg.request_manager import RequestManager
|
|
from StreamingCommunity.HelpTg.session import set_session
|
|
|
|
# Svuoto il file
|
|
request_manager = RequestManager()
|
|
request_manager.clear_file()
|
|
script_id = sys.argv[1] if len(sys.argv) > 1 else "unknown"
|
|
|
|
set_session(script_id)
|
|
main(script_id) |