package models type AuthKey struct { CryptAuthKey string `json:"crypt_auth_key"` CryptType string `json:"crypt_type"` Status int64 `json:"status"` } type NpsOperateResp struct { Msg string `json:"Msg"` Status int64 `json:"Status"` } type UnixTime struct { Timestamp int64 `json:"time"` } type NpsClientInfo struct { Id int64 `json:"Id"` Status bool `json:"Status"` IsConnect bool `json:"IsConnect"` RateLimit int64 `json:"RateLimit"` VerifyKey string `json:"VerifyKey"` Addr string `json:"Addr"` } type TcpTunnelInfo struct { Id int64 `json:"Id"` Port int64 `json:"Port"` Mode string `json:"Mode"` Status bool `json:"Status"` RunStatus bool `json:"RunStatus"` }