schnutibox/api/proto/v1/schnutibox.proto

16 lines
266 B
Protocol Buffer
Raw Normal View History

2021-05-05 08:32:35 +02:00
syntax = "proto3";
option go_package = "go.xsfx.dev/schnutibox/pkg/api/v1";
service Identifier {
rpc Identify (IdentifyRequest) returns (Tracks) {}
}
message IdentifyRequest {
string id = 1;
}
message Tracks {
string name = 1;
repeated string URIS = 2;
}