fusen-auth/proto/auth.proto
2023-10-24 11:20:42 +08:00

28 lines
625 B
Protocol Buffer
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

syntax = "proto3"; //版本声明使用v3版本
package service.auth;
option go_package = "fusen-auth/gen/go/auth";
// 导入google/api/annotations.proto 注释依赖
import "google/api/annotations.proto";
import "basic.proto";
//定义服务
service AuthService {
//定义服务方法
rpc SayHello (AuthRequest) returns (service.basic.Response) {
//添加http网关注解
option (google.api.http) = {
post: "/api/auth/echo"
body: "*"
};
}
rpc SayHelloAgain (AuthRequest) returns (service.basic.Response) {}
}
// 定义请求消息类型.
message AuthRequest {
string name = 1;
}