File size: 361 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
package main
type Task struct {
// Name used in logs
Name string
// Command is the primary command to run.
Command string
// WatchFiles will cause the process to restart if any if the files change (can be patterns).
WatchFiles []string
// OneShot indicates that the process should run and then exit.
//
// Useful for running tests.
OneShot bool
}
|