From baed21bd2565324c4fa27db3a0213bc89e882b98 Mon Sep 17 00:00:00 2001 From: Sung Won Cho Date: Fri, 28 Apr 2017 11:53:58 +1000 Subject: [PATCH] Document usage in CLI --- main.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/main.go b/main.go index 4593ff04..a3c0e9ab 100644 --- a/main.go +++ b/main.go @@ -115,10 +115,16 @@ func main() { fmt.Println(" use [u] - choose the book") fmt.Println(" new [n] - write a new note") fmt.Println(" books [b] - show books") + fmt.Println(" edit [e] - edit a notes or a book") + fmt.Println(" delete [d] - delete a notes or a book") fmt.Println(" notes - show notes for book") fmt.Println("") fmt.Println("Other commands:") fmt.Println(" upgrade - upgrade dnote") + fmt.Println(" login - login with your API key") + fmt.Println(" sync - sync with the server") + fmt.Println("") + fmt.Println("Full documentation: https://github.com/dnote-io/cli#commands") os.Exit(0) }