mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
15 lines
331 B
Python
15 lines
331 B
Python
from pathlib import Path
|
|
|
|
from nonebot_plugin_localstore import get_cache_dir # type: ignore[import-untyped]
|
|
from pydantic import BaseModel
|
|
|
|
from . import migrations # noqa: F401
|
|
|
|
CACHE_PATH: Path = get_cache_dir('nonebot_plugin_tetris_stats')
|
|
|
|
|
|
class Config(BaseModel):
|
|
"""配置类"""
|
|
|
|
tetris_req_timeout: float = 30.0
|