15 lines
No EOL
204 B
Protocol Buffer
15 lines
No EOL
204 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "fastbin/internal/keygen";
|
|
|
|
package keygen;
|
|
|
|
service Keygen {
|
|
rpc GenerateKey(Empty) returns (Key) {}
|
|
}
|
|
|
|
message Empty {}
|
|
|
|
message Key {
|
|
string value = 1;
|
|
} |