Files
termix/lib/proto/audio_backend.proto
Nikolai Rodionov dcb6d7b0ea
Some checks failed
ci/woodpecker/push/pre_commit_test Pipeline was successful
ci/woodpecker/push/code_tests Pipeline failed
Update protos
Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
2025-12-01 12:37:11 +01:00

23 lines
490 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);
rpc GetAvailableBackends(google.protobuf.Empty) returns (BackendList);
}
message BackendList {
repeated Backend backends = 1;
}
message Backend {
string name = 1;
}
message Shirt {
google.protobuf.Empty dummy = 1;
}