mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-16 01:40:15 +08:00
12 lines
180 B
Python
12 lines
180 B
Python
from dataclasses import dataclass
|
|
|
|
class DashBoardData():
|
|
stats: dict = {}
|
|
configs: dict = {}
|
|
|
|
@dataclass
|
|
class Response():
|
|
status: str
|
|
message: str
|
|
data: dict
|