Spaces:
Build error
Build error
File size: 443 Bytes
0827183 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import os
class DefaultConfig:
"""Bot Configuration"""
STRING = os.environ.get("STRING", "test")
INT = os.environ.get("INT", 3)
LIST = os.environ.get("LIST", ["zero", "one", "two", "three"])
NOT_TO_BE_OVERRIDDEN = os.environ.get("NOT_TO_BE_OVERRIDDEN", "one")
TO_BE_OVERRIDDEN = os.environ.get("TO_BE_OVERRIDDEN", "one")
|