12 lines
237 B
Protocol Buffer
12 lines
237 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package cms_template_proto;
|
|
|
|
option go_package = "go.unistack.org/cms-template-proto;cms_template_proto";
|
|
|
|
import "cms_template_messages.proto";
|
|
|
|
service TemplateService {
|
|
rpc Call(CallReq) returns (CallRsp) {};
|
|
};
|