12 lines
132 B
Plaintext
12 lines
132 B
Plaintext
|
|
package verifyMgr
|
||
|
|
|
||
|
|
type VerifyType int8
|
||
|
|
|
||
|
|
const (
|
||
|
|
// Method=GET
|
||
|
|
Con_Get VerifyType = 1
|
||
|
|
|
||
|
|
// Method=POST
|
||
|
|
Con_Post VerifyType = 2
|
||
|
|
)
|