feat: 前端显示 mdns 搜索到的板子连接信息。

This commit is contained in:
2023-04-29 15:09:45 +08:00
parent e5527ce3c3
commit f6e3257670
9 changed files with 164 additions and 12 deletions

View File

@ -0,0 +1,5 @@
export type BoardInfo = {
name: string;
address: string;
port: number;
};