From 45da7c19dad0599c32917028e45af639efbe708c Mon Sep 17 00:00:00 2001 From: Cobin Bluth <cbluth@gmail.com> Date: Sun, 16 Aug 2020 15:36:29 +0200 Subject: [PATCH] add help --- cli.go | 2 +- help.go | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 help.go diff --git a/cli.go b/cli.go index b43e6e0..ba97597 100644 --- a/cli.go +++ b/cli.go @@ -50,7 +50,7 @@ func cli() error { } default: { - tmp() + help() } } return nil diff --git a/help.go b/help.go new file mode 100644 index 0000000..7dbe835 --- /dev/null +++ b/help.go @@ -0,0 +1,11 @@ + +package main + +import ( + "fmt" +) + +// help . +func help() { + fmt.Println("TODO: print help section here") +} \ No newline at end of file