mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
12 lines
248 B
Python
12 lines
248 B
Python
from typing import Literal
|
|
|
|
from .base import Base, People
|
|
|
|
|
|
class Bind(Base):
|
|
platform: Literal['TETR.IO', 'TOP', 'TOS']
|
|
type: Literal['success', 'unknown', 'unlink', 'unverified', 'error']
|
|
user: People
|
|
bot: People
|
|
prompt: str
|