moving run command
All checks were successful
code scans / scans (push) Successful in 26s
code scans / scans (pull_request) Successful in 24s

- run command is no longer attached to the 'command' subcmd
- run is standalone
This commit is contained in:
2025-11-26 13:04:14 -05:00
parent 210e574f51
commit b41b5e2be8
7 changed files with 26 additions and 21 deletions

8
constants/error.go Normal file
View File

@@ -0,0 +1,8 @@
package constants
const (
//sqlite doesn't have an error type for this error, but we want to catch when this error is thrown
//and provide the proper response. It should not be treated as an error if the db isn't setup.
ErrInit = "sqlite3: SQL logic error: no such table: commands"
ErrInitRsp = "The 'init' command must be run before mctl can be used"
)