added command to process single pipeline

This commit is contained in:
Brad Rydzewski
2020-05-06 16:31:55 -04:00
parent 376e37f807
commit 4dfbd2c526
4 changed files with 152 additions and 1 deletions

View File

@@ -262,6 +262,11 @@ func setupLogger(config Config) {
// Register the daemon command.
func Register(app *kingpin.Application) {
registerDaemon(app)
registerProcess(app)
}
func registerDaemon(app *kingpin.Application) {
c := new(daemonCommand)
cmd := app.Command("daemon", "starts the runner daemon").