# store.py | |
# This file is used to store global scalar values. | |
# You can define your global variables here. | |
# Dictionary to store tenant access tokens and their expiry information | |
# Key: app_id (str) | |
# Value: Dictionary {'token': str, 'created_time': float, 'expires_in': int} | |
token_store = {} | |
# Add any other global variables as needed. | |