Files
2025-10-30 18:26:02 +08:00

14 lines
253 B
Go

package SafelineRequest
import "encoding/json"
type AuthTokenResp struct {
Data string `json:"data"`
Err string `json:"err"`
Msg string `json:"msg"`
}
func (authResp *AuthTokenResp) Unmarshal(data []byte) {
_ = json.Unmarshal(data, authResp)
}