File size: 340 Bytes
a248251 |
1 2 3 4 5 6 7 8 9 10 11 12 |
# 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.
|