Files
music-agregator/internal/torrent/service.go
T
2026-05-06 22:26:40 +02:00

12 lines
238 B
Go

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
}