zhenxun_bot/zhenxun/builtin_plugins/web_ui/config.py

23 lines
347 B
Python
Raw Normal View History

from strenum import StrEnum
origins = ["*"]
AVA_URL = "http://q1.qlogo.cn/g?b=qq&nk={}&s=160"
GROUP_AVA_URL = "http://p.qlogo.cn/gh/{}/{}/640/"
class QueryDateType(StrEnum):
"""
查询日期类型
"""
DAY = "day"
""""""
WEEK = "week"
""""""
MONTH = "month"
""""""
YEAR = "year"
""""""