fusen-auth/proto/basic.proto
2023-10-23 18:27:42 +08:00

21 lines
389 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.basic;
option go_package = "fusen-auth/gen/go/service/basic";
import "google/protobuf/any.proto";
// 定义请求消息类型.
message Request {
}
// 定义全局响应消息类型.
message Response {
string code = 1;
string msg = 2;
google.protobuf.Any data = 3;
google.protobuf.Any debug = 4;
}