This commit is contained in:
2025-04-15 21:11:54 +08:00
commit 1927412d3f
30 changed files with 1333 additions and 0 deletions

View File

@ -0,0 +1,13 @@
package safeLineApi
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)
}