23 lines
490 B
Protocol Buffer
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;
|
|
}
|