Task is the interface defining methods we'll use in various tasks
| 16 | |
| 17 | // Task is the interface defining methods we'll use in various tasks |
| 18 | type Task interface { |
| 19 | Execute() error |
| 20 | GetDescription() string |
| 21 | } |
| 22 | |
| 23 | // ExecTask is the struct that defines "exec" tasks for hooks, commands |
| 24 | // to be run in containers. |
no outgoing calls
no test coverage detected