A lot of pointless stuff
This commit is contained in:
19
lib/proto/track.proto
Normal file
19
lib/proto/track.proto
Normal file
@@ -0,0 +1,19 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user