新增蓝图执行代码

This commit is contained in:
boyce
2025-09-20 07:54:08 +08:00
parent 6c44ba180c
commit a54b3c59fc
12 changed files with 1609 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
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)
}