You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package exec
-
- import (
- "context"
- )
-
- type PlanID string
-
- type Plan struct {
- ID PlanID `json:"id"`
- Ops []Op `json:"ops"`
- }
-
- type Op interface {
- Execute(ctx context.Context, sw *Executor) error
- }
|