mirror of
https://github.com/duanhf2012/origin.git
synced 2026-02-03 22:45:13 +08:00
11 lines
146 B
Go
11 lines
146 B
Go
package blueprint
|
|
|
|
type ExecContext struct {
|
|
InputPorts []IPort
|
|
OutputPorts []IPort
|
|
}
|
|
|
|
func (ec *ExecContext) Reset() {
|
|
*ec = ExecContext{}
|
|
}
|