Spaces:
Running
Running
File size: 257 Bytes
1d5675d |
1 2 3 4 5 6 7 8 9 10 11 |
# config.py
class Config:
API_KEY = "api_key" # Placeholder for the API key, initially set to None
@classmethod
def set_api_key(cls, api_key):
cls.API_KEY = api_key
@classmethod
def get_api_key(cls):
return cls.API_KEY |