mctl/cmd/server/server.go
jake 7ff43c82c2 [fix] Testing fixes
- sqlite error handling and wrapping
- more responsive commands
- database updates
2025-06-19 17:23:17 -04:00

21 lines
363 B
Go

/*
Copyright © 2025 Jake jake.young.dev@gmail.com
*/
package server
import (
"github.com/spf13/cobra"
)
const (
ErrInit = "sqlite3: SQL logic error: no such table: servers"
ErrInitRsp = "The 'init' command must be run before mctl can be used"
)
var ServerCmd = &cobra.Command{
Use: "server",
Example: "mctl server <subcommand>",
}
func init() {}