DevToolKit / config.py
acecalisto3's picture
Create config.py
1d5675d verified
raw
history blame
No virus
257 Bytes
# 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