15 lines
320 B
Protocol Buffer
15 lines
320 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 {
|
|
google.protobuf.Empty dummy = 1;
|
|
}
|