mirror of
https://github.com/go-kratos/kratos.git
synced 2025-04-19 12:12:22 +02:00
9 lines
156 B
Protocol Buffer
9 lines
156 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package reply;
|
||
|
|
||
|
option go_package = "github.com/go-kratos/kratos/examples/swagger/reply;reply";
|
||
|
|
||
|
message Reply {
|
||
|
string value = 1;
|
||
|
}
|