feat: 支持获取和查看板子连接的情况。

This commit is contained in:
2023-04-30 18:44:26 +08:00
parent 11045f27d8
commit 6c90a5e655
6 changed files with 193 additions and 58 deletions

View File

@ -1,5 +1,8 @@
export type BoardInfo = {
name: string;
host: string;
address: string;
port: number;
ttl: number;
is_online: boolean;
checked_at: Date;
};