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

11 lines
146 B
Go

package blueprint
type ExecContext struct {
InputPorts []IPort
OutputPorts []IPort
}
func (ec *ExecContext) Reset() {
*ec = ExecContext{}
}