Skip to content

Commit

Permalink
add help
Browse files Browse the repository at this point in the history
  • Loading branch information
cbluth committed Aug 16, 2020
1 parent 7344b22 commit 45da7c1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func cli() error {
}
default:
{
tmp()
help()
}
}
return nil
Expand Down
11 changes: 11 additions & 0 deletions help.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

package main

import (
"fmt"
)

// help .
func help() {
fmt.Println("TODO: print help section here")
}

0 comments on commit 45da7c1

Please sign in to comment.