10 lines
284 B
Python
10 lines
284 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_name = getenv("TG_CHANNEL_NAME", "CafeteriaFIC")
|
|
|
|
menu_history_file_path = getenv(
|
|
"MENU_HISTORY_FILE_PATH", "/tmp/menu_history.json")
|