重构项目

This commit is contained in:
2025-10-30 18:26:02 +08:00
parent fbc8bcd089
commit 7e10e2d2da
39 changed files with 728 additions and 464 deletions

View File

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