Spaces:
Build error
Build error
File size: 307 Bytes
0827183 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from os import environ
class DefaultConfig:
"""Bot Configuration"""
PORT: int = 3978
APP_ID: str = environ.get("MicrosoftAppId", "")
APP_PASSWORD: str = environ.get("MicrosoftAppPassword", "")
|