mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
23 lines
347 B
Python
23 lines
347 B
Python
|
|
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"
|
||
|
|
"""年"""
|