Files
origin/util/blueprint/blueprint.go
2025-09-20 07:54:08 +08:00

12 lines
232 B
Go

package blueprint
type Blueprint struct {
execPool ExecPool
graphPool GraphPool
}
func (bm *Blueprint) Init(execDefFilePath string, graphFilePath string) {
bm.execPool.Load(execDefFilePath)
bm.graphPool.Load(graphFilePath)
}