10 lines
285 B
Python
10 lines
285 B
Python
from os import getenv
|
|
|
|
api_id = getenv("TG_API_ID")
|
|
api_hash = getenv("TG_API_HASH")
|
|
session_name = getenv("TG_SESSION_NAME", "default")
|
|
channel_id = int(getenv("TG_CHANNEL_ID", -1001385379004))
|
|
|
|
menu_history_file_path = getenv(
|
|
"MENU_HISTORY_FILE_PATH", "/tmp/menu_history.json")
|