Create torrent proto stub

This commit is contained in:
Alexander
2026-05-06 22:26:40 +02:00
parent 3249bdc35c
commit 36416081c1
5 changed files with 105 additions and 26 deletions
+11
View File
@@ -0,0 +1,11 @@
package torrent
import "homelab.lan/music-agregator/internal/config"
type TorrentService struct {
config config.Config
}
func NewIndexerService(cfg config.Config) (*TorrentService, error) {
return &TorrentService{config: cfg}, nil
}