From 7c79376f40e1a23b2bc82b8b89957b6f42a73b14 Mon Sep 17 00:00:00 2001 From: Kyomotoi <0w0@imki.moe> Date: Fri, 10 Mar 2023 01:12:02 +0800 Subject: =?UTF-8?q?=E2=99=BB=EF=B8=8F=20=E9=87=8D=E6=9E=84=20console,=20?= =?UTF-8?q?=E4=BD=BF=E4=B9=8B=E4=BB=A3=E7=A0=81=E5=8F=AF=E8=AF=BB=E6=80=A7?= =?UTF-8?q?=E6=8F=90=E9=AB=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ATRI/plugins/console/driver/models.py | 38 ----------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 ATRI/plugins/console/driver/models.py (limited to 'ATRI/plugins/console/driver/models.py') diff --git a/ATRI/plugins/console/driver/models.py b/ATRI/plugins/console/driver/models.py deleted file mode 100644 index cbc110d..0000000 --- a/ATRI/plugins/console/driver/models.py +++ /dev/null @@ -1,38 +0,0 @@ -from pydantic import BaseModel - - -class PlatformRuntimeInfo(BaseModel): - cpu_percent: str - mem_percent: str - disk_percent: str - net_sent: str - net_recv: str - boot_time: str - - -class BotRuntimeInfo(BaseModel): - cpu_percent: str - mem_percent: str - run_time: str - - -class RuntimeInfo(BaseModel): - status_message: str - platform_info: PlatformRuntimeInfo - bot_info: BotRuntimeInfo - - -class ServiceInfo(BaseModel): - service: str - docs: str - permission: list - cmd_list: dict - enabled: bool - only_admin: bool - disable_user: list - disable_group: list - - -class BlockInfo(BaseModel): - user: dict - group: dict -- cgit v1.2.3