backend/pkg/proto/brahma/murder/hello.proto

17 lines
294 B
Protocol Buffer

syntax = "proto3";
option go_package = "git.icechen.cn/monorepo/backend/pkg/proto/brahma/murder";
package example_service;
service HelloWorld {
rpc Login (HelloRequest) returns (HelloResponse) {}
}
message HelloRequest {
string code = 1;
}
message HelloResponse {
string token = 1;
}