diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-04-10 14:03:50 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-04-10 14:03:50 +0300 |
| commit | 26a0481d8275c6d7953aaeb72a316db69c150354 (patch) | |
| tree | 476c92929a3659e51091ada546dfb4778d41f757 /database/model/model.go | |
| parent | 304510aefc7bb56a392c2adc973e1dc918d4f31b (diff) | |
http header bug fixed
Diffstat (limited to 'database/model/model.go')
| -rw-r--r-- | database/model/model.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/database/model/model.go b/database/model/model.go index 69724213..778ad9b6 100644 --- a/database/model/model.go +++ b/database/model/model.go @@ -80,7 +80,7 @@ type Client struct { LimitIP int `json:"limitIp"` TotalGB int64 `json:"totalGB" form:"totalGB"` ExpiryTime int64 `json:"expiryTime" form:"expiryTime"` - Enable bool `json:"enable" from:"enable"` - TgID string `json:"tgId" from:"tgId"` - SubID string `json:"subId" from:"subId"` + Enable bool `json:"enable" form:"enable"` + TgID string `json:"tgId" form:"tgId"` + SubID string `json:"subId" form:"subId"` } |
