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 }