style:包名小写

This commit is contained in:
Mmx
2021-07-11 12:02:42 +08:00
parent 78e9aa9ec3
commit e3f668c100
14 changed files with 51 additions and 50 deletions

33
modles/login.go Normal file
View File

@@ -0,0 +1,33 @@
package modles
type LoginForm struct {
Domain string `json:"domain"`
UserName string `json:"username"`
UserType string `json:"user_type"`
PassWord string `json:"password"`
}
type LoginMeta struct {
N string `json:"n"`
Type string `json:"type"`
Acid string `json:"acid"`
Enc string `json:"enc"`
}
type LoginInfo struct {
UrlLoginPage string
UrlGetChallengeApi string
UrlLoginApi string
UrlCheckApi string
Ip string
Token string
EncryptedInfo string
Md5 string
EncryptedMd5 string
EncryptedChkstr string
LoginResult string
Form *LoginForm
Meta *LoginMeta
}