mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-18 21:07:44 +03:00
12 lines
300 B
Go
12 lines
300 B
Go
package conf
|
|
|
|
import (
|
|
"github.com/deluan/gosonic/utils"
|
|
"github.com/deluan/gosonic/repositories"
|
|
)
|
|
|
|
func init () {
|
|
utils.DefineSingleton(new(repositories.ArtistIndex), repositories.NewArtistIndexRepository)
|
|
utils.DefineSingleton(new(repositories.Property), repositories.NewPropertyRepository)
|
|
}
|