16 lines
266 B
Protocol Buffer
16 lines
266 B
Protocol Buffer
|
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;
|
||
|
}
|