13 lines
199 B
Python
13 lines
199 B
Python
"""Bot 内部数据结构。"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class RouteResult:
|
|
source: str
|
|
text: str
|
|
image_path: str | None = None
|