mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
21 lines
334 B
Python
21 lines
334 B
Python
from datetime import datetime
|
|
from typing import Literal
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Cache(BaseModel):
|
|
status: str
|
|
cached_at: datetime
|
|
cached_until: datetime
|
|
|
|
|
|
class SuccessModel(BaseModel):
|
|
success: Literal[True]
|
|
cache: Cache
|
|
|
|
|
|
class FailedModel(BaseModel):
|
|
success: Literal[False]
|
|
error: str
|