mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
8 lines
204 B
Python
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'
|