Files
termix/lib/proto/audio_backend.proto
Nikolai Rodionov 86566221b1
Some checks failed
ci/woodpecker/push/code_tests Pipeline failed
ci/woodpecker/push/pre_commit_test Pipeline was successful
Start implementing the grpc
Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
2025-11-30 13:06:58 +01:00

24 lines
486 B
Protocol Buffer

syntax = "proto3";
package termix.audio_backend;
import "google/protobuf/empty.proto";
service AudioBackend {
rpc StartClient(google.protobuf.Empty) returns (google.protobuf.Empty);
rpc InitConnection(google.protobuf.Empty) returns (google.protobuf.Empty);
}
message Shirt {
// Label sizes
enum Size {
SMALL = 0;
MEDIUM = 1;
LARGE = 2;
}
// The base color
string color = 1;
// The size as stated on the label
Size size = 2;
}