mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-15 17:30:13 +08:00
11 lines
157 B
Python
11 lines
157 B
Python
from dataclasses import dataclass
|
|
|
|
class DashBoardData():
|
|
stats: dict = {}
|
|
|
|
@dataclass
|
|
class Response():
|
|
status: str
|
|
message: str
|
|
data: dict
|