Files
nonebot-plugin-tetris-stats/nonebot_plugin_tetris_stats/utils/config.py
2022-08-09 02:50:06 +08:00

8 lines
204 B
Python

from pydantic import BaseModel
class Config(BaseModel):
'''配置类'''
cache_path: str = 'cache/nonebot_plugin_tetris_stats/cache'
db_path: str = 'data/nonebot_plugin_tetris_stats/data.db'