19 lines
414 B
Protocol Buffer
19 lines
414 B
Protocol Buffer
syntax = "proto3";
|
|
package music_agregator.v1;
|
|
option go_package = "homelab.lan/music-agregator/gen/music_agregator/v1/";
|
|
|
|
service MusicAgregatorService {
|
|
rpc MonitorAlbum(MonitorAlbumRequest) returns (MonitorAlbumResponse) {}
|
|
}
|
|
|
|
message MonitorAlbumRequest {
|
|
string album_id = 1;
|
|
IndexerOptions indexer_options = 2;
|
|
|
|
message IndexerOptions {
|
|
string tracker = 1;
|
|
}
|
|
}
|
|
|
|
message MonitorAlbumResponse {}
|