Skip to content

Commit

Permalink
auto: sync upstream / update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
paepckehh committed Jan 8, 2023
1 parent d0463e2 commit 14c7e5c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@
Makefile
doc
vendor
hq
cmd/hq/hq
17 changes: 17 additions & 0 deletions cmd/hq/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// package main
package main

import (
"os"

"paepcke.de/hq"
)

// main ..
func main() {
c := hq.NewConfig()
c.ParseCmd()
if !c.RunAction() {
os.Exit(1)
}
}

0 comments on commit 14c7e5c

Please sign in to comment.