add client group

This commit is contained in:
Alireza Ahmadi
2024-07-23 22:57:19 +02:00
parent 869c51885f
commit 0bb3a67f79
9 changed files with 18 additions and 2 deletions
+2
View File
@@ -13,6 +13,7 @@ export interface Client {
up: number
down: number
desc: string
group: string
}
const defaultClient: Client = {
@@ -26,6 +27,7 @@ const defaultClient: Client = {
up: 0,
down: 0,
desc: "",
group: "",
}
type Config = {