mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
12 lines
295 B
Go
12 lines
295 B
Go
package persistence
|
|
|
|
import (
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
func InitIoc() {
|
|
ioc.Register(newProcdefRepo(), ioc.WithComponentName("ProcdefRepo"))
|
|
ioc.Register(newProcinstRepo(), ioc.WithComponentName("ProcinstRepo"))
|
|
ioc.Register(newProcinstTaskRepo(), ioc.WithComponentName("ProcinstTaskRepo"))
|
|
}
|