Files
mayfly-go/server/internal/file/infrastructure/persistence/persistence.go

10 lines
137 B
Go
Raw Normal View History

package persistence
import (
"mayfly-go/pkg/ioc"
)
func InitIoc() {
ioc.Register(newFileRepo(), ioc.WithComponentName("FileRepo"))
}