26 lines
687 B
Go
26 lines
687 B
Go
// Code generated by protoc-gen-go-micro. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-micro v3.10.4
|
|
// - protoc v5.27.1
|
|
// source: cms_template_service.proto
|
|
|
|
package cms_template_proto
|
|
|
|
import (
|
|
context "context"
|
|
cms_template_proto "go.unistack.org/cms-template-proto"
|
|
client "go.unistack.org/micro/v3/client"
|
|
)
|
|
|
|
var (
|
|
TemplateServiceName = "TemplateService"
|
|
)
|
|
|
|
type TemplateServiceClient interface {
|
|
Call(ctx context.Context, req *cms_template_proto.CallReq, opts ...client.CallOption) (*cms_template_proto.CallRsp, error)
|
|
}
|
|
|
|
type TemplateServiceServer interface {
|
|
Call(ctx context.Context, req *cms_template_proto.CallReq, rsp *cms_template_proto.CallRsp) error
|
|
}
|