feishu / store.py
geqintan's picture
update
a248251
raw
history blame contribute delete
340 Bytes
# 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.