diff options
author | Joop Kiefte <ikojba@gmail.com> | 2023-09-28 01:36:31 +0100 |
---|---|---|
committer | Joop Kiefte <ikojba@gmail.com> | 2023-09-28 01:36:31 +0100 |
commit | 9541cf3832bc32bdc120a6412657cff99243d1f1 (patch) | |
tree | 57f4f90a09b162034bd54f67e00d1796dd6f6a1a | |
parent | 217b093c56f89d19ec806a6956bb2c8c4fd850b0 (diff) |
Forgot table name for command line
-rw-r--r-- | main.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -23,6 +23,7 @@ func main() { choice = 1 case "edit": // Import table choice = 3 + table = os.Args[2] case "run": // Run query choice = 2 query = strings.Join(os.Args[2:], " ") |