snowflake/proto/snowflake.proto
2021-03-06 23:08:12 -09:00

16 lines
200 B
Protocol Buffer

syntax = "proto3";
package snowflake;
message Empty {
}
message SnowflakeReply {
string id_str = 1;
uint64 id = 2;
}
service Snowflake {
rpc GetSnowflake (Empty) returns (SnowflakeReply);
}