mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 07:38:04 -05:00
18 lines
238 B
Go
18 lines
238 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// const .
|
||
|
|
const (
|
||
|
|
IdentifyOk = 0
|
||
|
|
IdentifyNoInfo = 1
|
||
|
|
|
||
|
|
PhoneOk = 0
|
||
|
|
Phone17x = 1
|
||
|
|
PhoneEmpty = 2
|
||
|
|
)
|
||
|
|
|
||
|
|
// IdentifyInfo .
|
||
|
|
type IdentifyInfo struct {
|
||
|
|
Identify int8 `json:"'identify'"`
|
||
|
|
Phone int8 `json:"phone"`
|
||
|
|
}
|