11 lines
213 B
Go
11 lines
213 B
Go
package conf
|
|
|
|
import (
|
|
"github.com/deluan/gosonic/utils"
|
|
"github.com/deluan/gosonic/repositories"
|
|
)
|
|
|
|
func init () {
|
|
utils.DefineSingleton(new(repositories.ArtistIndex), repositories.NewArtistIndexRepository)
|
|
}
|