Files

12 lines
200 B
Protocol Buffer
Raw Permalink 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";
// 场景04最底层基础类型C 层)
package base;
option go_package = "example.com/demo/s04_transitive/pb";
message BaseResp {
int32 code = 1;
string msg = 2;
}