Files
kami_backend/api/common/common.go
2023-11-15 14:31:37 +08:00

16 lines
420 B
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package common
import (
"context"
"kami/api/common/v1"
)
type ICommonV1 interface {
GetCaptcha(ctx context.Context, req *v1.GetCaptchaReq) (res *v1.GetCaptchaRes, err error)
}