orbis/internal/app/model_registry.go

11 lines
275 B
Go
Raw Permalink Normal View History

package app
import (
"git.front.kjuulh.io/kjuulh/orbis/internal/modelregistry"
"git.front.kjuulh.io/kjuulh/orbis/internal/utilities"
)
var ModelRegistry = utilities.Singleton(func() (*modelregistry.ModelRegistry, error) {
return modelregistry.NewModelRegistry(), nil
})