tuoheng_alg_airport/common/Constant.py

21 lines
529 B
Python
Raw Normal View History

2023-01-16 16:44:30 +08:00
from enum import Enum, unique
# 常量枚举
@unique
class ConstantEnum(Enum):
APPLICATION_CONFIG = ("airport_application.yml", "配置文件名称")
UTF_8 = ("utf-8", "utf-8")
R = ("r", "可读")
START_LOG = ("""
_ ___ ____ ____ ___ ____ _____
/ \ |_ _| _ \| _ \ / _ \| _ \_ _|
/ _ \ | || |_) | |_) | | | | |_) || |
/ ___ \ | || _ <| __/| |_| | _ < | |
/_/ \_\___|_| \_\_| \___/|_| \_\|_|
:: AIRPORT SERVICE :: (1.0.0.RELEASE)
""", "启动服务LOG")