Skip to content

Commit 4089d46

Browse files
committed
correct name
1 parent 856ac62 commit 4089d46

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

beanstool.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ import (
99
)
1010

1111
func main() {
12-
parser := flags.NewNamedParser("event-relay", flags.Default)
12+
parser := flags.NewNamedParser("beanstool", flags.Default)
1313
parser.AddCommand("stats", "print stats on all tubes", "", &cli.StatsCommand{})
1414
parser.AddCommand("tail", "tails a tube and prints his content", "", &cli.TailCommand{})
1515
parser.AddCommand("peek", "peeks a job from a queue", "", &cli.PeekCommand{})
1616
parser.AddCommand("kick", "kicks jobs from buried back into ready", "", &cli.KickCommand{})
17+
parser.AddCommand("put", "put a job into a tube", "", &cli.PutCommand{})
1718

1819
_, err := parser.Parse()
1920
if err != nil {

0 commit comments

Comments
 (0)