mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
* 🔧 启用一些 ruff 的新规则 * ➕ 添加开发依赖 nonebot-adapter-qq * ➕ 添加依赖 nonebot-plugin-session * ➕ 添加依赖 nonebot-plugin-session-orm * 🔧 忽略 ruff 规则 ISC001 format 冲突风险 * 🚨 修复 ruff 警报 * ♻️ 重构! * ♻️ 恢复定时获取 TetraLeague 数据的功能 * ✨ 统一处理需要捕获的错误 * ✨ 记录用户触发的指令
14 lines
282 B
Python
14 lines
282 B
Python
from typing import Literal
|
|
|
|
from pydantic import BaseModel
|
|
|
|
from .base import People
|
|
|
|
|
|
class Bind(BaseModel):
|
|
platform: Literal['TETR.IO', 'TOP', 'TOS']
|
|
status: Literal['error', 'success', 'unknown', 'unlink', 'unverified']
|
|
user: People
|
|
bot: People
|
|
command: str
|