22 lines
580 B
Protocol Buffer
22 lines
580 B
Protocol Buffer
syntax = "proto3"; //版本声明,使用v3版本
|
||
|
||
package notify;
|
||
option go_package = "gitlab.fusenpack.com/backend/notify;service";
|
||
|
||
// 导入google/api/annotations.proto 注释依赖
|
||
import "google/api/annotations.proto";
|
||
import "service/basic.proto";
|
||
import "google/protobuf/struct.proto";
|
||
import "google/protobuf/any.proto";
|
||
|
||
//定义服务
|
||
service notify {
|
||
|
||
// 邮件注册确认
|
||
rpc EmailRegisterConfirm(basic.Request) returns (basic.Response) {
|
||
option (google.api.http) = {
|
||
post: "/api/notify/email"
|
||
body: "*"
|
||
};
|
||
}
|
||
} |