2016-03-01 05:38:43 -09:00
|
|
|
package conf
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/deluan/gosonic/utils"
|
2016-03-01 08:35:30 -09:00
|
|
|
"github.com/deluan/gosonic/repositories"
|
2016-03-01 05:38:43 -09:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init () {
|
2016-03-01 08:35:30 -09:00
|
|
|
utils.DefineSingleton(new(repositories.ArtistIndex), repositories.NewArtistIndexRepository)
|
2016-03-01 05:38:43 -09:00
|
|
|
}
|