gas-stack/cmd/main.go
wispem-wantex e888fe0ec1
Some checks failed
CI / release-test (push) Failing after 16s
Add main program with 'sqlite_lint' subcommand
2025-08-24 11:37:23 -07:00

31 lines
444 B
Go

package main
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
const (
GREEN = "\033[0;32m"
RED = "\033[0;31m"
RESET = "\033[0m"
)
func main() {
rootCmd := &cobra.Command{
Use: "gas",
SilenceErrors: true,
SilenceUsage: true,
}
rootCmd.AddCommand(sqlite_lint)
if err := rootCmd.Execute(); err != nil {
fmt.Println(RED + err.Error() + RESET)
os.Exit(1)
}
}
// Subcommand "init"
// Subcommand "generate_models"