goProject/.svn/pristine/a5/a547e94827ccfb6a37830953c902d64ea944cd8d.svn-base
2025-01-06 16:21:36 +08:00

12 lines
132 B
Plaintext

package verifyMgr
type VerifyType int8
const (
// Method=GET
Con_Get VerifyType = 1
// Method=POST
Con_Post VerifyType = 2
)