Files
mayfly-go/server/internal/flow/api/api.go

11 lines
184 B
Go
Raw Normal View History

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))
}