Files
termix/lib/proto/track.proto
Nikolai Rodionov 87ee669502
Some checks failed
ci/woodpecker/push/code_tests Pipeline failed
ci/woodpecker/push/pre_commit_test Pipeline failed
WIP: Preparing the codebase, nothing important
2025-12-17 14:56:21 +01:00

20 lines
295 B
Protocol Buffer

syntax = "proto3";
package termix.track;
import "google/protobuf/empty.proto";
service TrackOp {
rpc Create(Track) returns (google.protobuf.Empty);
rpc List(google.protobuf.Empty) returns (Tracks);
}
message Track {
string name = 1;
}
message Tracks {
repeated Track tracks = 1;
}