2024-12-16 23:29:18 +08:00
|
|
|
package api
|
|
|
|
|
|
|
|
|
|
import "mayfly-go/pkg/ioc"
|
|
|
|
|
|
|
|
|
|
func InitIoc() {
|
|
|
|
|
ioc.Register(new(Procdef))
|
|
|
|
|
ioc.Register(new(Procinst))
|
2025-05-20 21:04:47 +08:00
|
|
|
ioc.Register(new(ProcinstTask))
|
|
|
|
|
ioc.Register(new(HisProcinstOp))
|
2024-12-16 23:29:18 +08:00
|
|
|
}
|