improve: 优化包引用

This commit is contained in:
Mmx233
2022-10-21 13:59:19 +08:00
parent 9c2ea271a9
commit bb6803e04c
9 changed files with 41 additions and 52 deletions

View File

@@ -38,3 +38,16 @@ type Conf struct {
func (a *Conf) initApi() {
a.api.Init(a.Https, a.LoginInfo.Form.Domain, a.Client)
}
type LoginContext struct {
Ip string
Token string
EncryptedInfo string
Md5 string
EncryptedMd5 string
EncryptedChkstr string
LoginResult string
Form *LoginForm
Meta *LoginMeta
}