diff options
author | Joop Kiefte <ikojba@gmail.com> | 2023-09-28 02:06:48 +0100 |
---|---|---|
committer | Joop Kiefte <ikojba@gmail.com> | 2023-09-28 02:06:48 +0100 |
commit | d7dd8067ff2a8c01812e3bef9c80101c57820e83 (patch) | |
tree | 03f286407a4f0df18e9e216eaef4b646e9daf164 | |
parent | 18fe9d4acb58508b098692fd5ac25b151f58cadf (diff) |
Correct menu
-rw-r--r-- | main.go | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -104,11 +104,10 @@ Running debby with any other arguments will run it as a dolt command.` // Reset choice choice = 0 // Print menu - fmt.Println("1. Read table names") - fmt.Println("2. Run query") - fmt.Println("3. Edit table") - fmt.Println("4. Execute Dolt command") - fmt.Println("5. Exit") + fmt.Println("1. Run query") + fmt.Println("2. Edit table") + fmt.Println("3. Execute Dolt command") + fmt.Println("4. Exit") fmt.Print("Enter your choice: ") // Read user input |