Merge pull request #103 from AlexHTW/add-balance-function

Add balance functions to stats command
This commit is contained in:
ned
2023-03-26 12:46:05 +02:00
committed by GitHub
5 changed files with 121 additions and 16 deletions

View File

@@ -44,6 +44,7 @@ def main():
telegram_config = {
'token': os.environ['TELEGRAM_BOT_TOKEN'],
'admin_user_ids': os.environ.get('ADMIN_USER_IDS', '-'),
'allowed_user_ids': os.environ.get('ALLOWED_TELEGRAM_USER_IDS', '*'),
'monthly_user_budgets': os.environ.get('MONTHLY_USER_BUDGETS', '*'),
'monthly_guest_budget': float(os.environ.get('MONTHLY_GUEST_BUDGET', '100.0')),