Select the types of activity you want to include in your feed.
1package engine 2 3import ( 4 "tangled.org/core/spindle/models" 5) 6 7// checked before an executor accepts and holds a remote lease 8type WorkflowPlacementValidator interface { 9 ValidateWorkflowPlacement(wf *models.Workflow) error 10}