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"