Create indexer proto

This commit is contained in:
Alexander
2026-05-04 16:45:22 +02:00
parent f8040ec088
commit 32eb8c931e
5 changed files with 58 additions and 3 deletions
@@ -0,0 +1,11 @@
syntax = "proto3";
package music_agregator.indexer.v1;
option go_package = "homelab.lan/music-agregator/gen/music_agregator/v1/indexer";
service IndexerService {
rpc Search(SearchRequest) returns (SearchResponse){
}
}
message SearchRequest {}
message SearchResponse {}