新增蓝图执行代码

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

10
util/blueprint/context.go Normal file
View File

@@ -0,0 +1,10 @@
package blueprint
type ExecContext struct {
InputPorts []IPort
OutputPorts []IPort
}
func (ec *ExecContext) Reset() {
*ec = ExecContext{}
}