This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / spindle / engine / placement.go
226 B 10 lines
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}