12 lines
238 B
Go
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
|
|
}
|