proto/base/v1/msg.proto
nfel b7fe72b613
v2: new version added for easier deployment and ci/cd
Signed-off-by: nfel <nfilsaraee@gmail.com>
2024-11-18 12:15:04 +03:30

16 lines
166 B
Protocol Buffer

syntax = "proto3";
package base.v1;
message Empty {}
message StatusRes {
bool success = 1;
}
message IdRes {
int64 id = 1;
}
message IdReq {
int64 id = 1;
}