From 941a89e1f4998e4ff0edfe70dd337bb011c66c9d Mon Sep 17 00:00:00 2001 From: inamuu <8310973+inamuu@users.noreply.github.com> Date: Sun, 5 May 2024 01:00:54 +0900 Subject: [PATCH] delete unnecessary flag --- cmd/root.go | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index 1193086..16bb7d3 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -1,7 +1,3 @@ -/* -Copyright © 2024 NAME HERE - -*/ package cmd import ( @@ -15,20 +11,9 @@ import ( // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ Use: "simbal", - Short: "A brief description of your application", - Long: `A longer description that spans multiple lines and likely contains -examples and usage of using your application. For example: - -Cobra is a CLI library for Go that empowers applications. -This application is a tool to generate the needed files -to quickly create a Cobra application.`, - // Uncomment the following line if your bare application - // has an action associated with it: - // Run: func(cmd *cobra.Command, args []string) { }, + Short: "Simple Backup Luncher", } -// Execute adds all child commands to the root command and sets flags appropriately. -// This is called by main.main(). It only needs to happen once to the rootCmd. func Execute() { err := rootCmd.Execute() if err != nil { @@ -40,12 +25,5 @@ func init() { // Here you will define your flags and configuration settings. // Cobra supports persistent flags, which, if defined here, // will be global for your application. - // rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.simbal.yaml)") - - // Cobra also supports local flags, which will only run - // when this action is called directly. - rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") } - -