mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-07 09:50:26 +08:00
11 lines
184 B
Go
11 lines
184 B
Go
package api
|
|
|
|
import "mayfly-go/pkg/ioc"
|
|
|
|
func InitIoc() {
|
|
ioc.Register(new(Procdef))
|
|
ioc.Register(new(Procinst))
|
|
ioc.Register(new(ProcinstTask))
|
|
ioc.Register(new(HisProcinstOp))
|
|
}
|