add client description

This commit is contained in:
Alireza Ahmadi
2024-04-25 18:33:07 +02:00
parent fa922291ea
commit abb869c75b
11 changed files with 19 additions and 9 deletions
+2
View File
@@ -11,6 +11,7 @@ export interface Client {
expiry: number
up: number
down: number
desc: string
}
const defaultClient: Client = {
@@ -23,6 +24,7 @@ const defaultClient: Client = {
expiry: 0,
up: 0,
down: 0,
desc: "",
}
type Config = {