16 lines
410 B
Go
16 lines
410 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package verify
|
|
|
|
import (
|
|
"context"
|
|
|
|
"server/api/verify/v1"
|
|
)
|
|
|
|
type IVerifyV1 interface {
|
|
Verify(ctx context.Context, req *v1.VerifyReq) (res *v1.VerifyRes, err error)
|
|
}
|