diff --git a/cmd/root.go b/cmd/root.go index 2c3510b..e23674f 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -12,20 +12,14 @@ import ( // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ Use: "timmy", - 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: + Short: "Simple and easy to use time tracker", + Long: `Timmy is a simple and easy to use time tracker. You can use it to track, manage and sync your time from any terminal. -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) { }, +More information at https://github.com/snturk/timmy/blob/main/README.md +`, } // 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 { @@ -34,13 +28,5 @@ func Execute() { } 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/.timmy.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") + //rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") } diff --git a/cmd/sync.go b/cmd/sync.go index db9b7c6..f04d0ea 100644 --- a/cmd/sync.go +++ b/cmd/sync.go @@ -1,5 +1,5 @@ /* -Copyright © 2024 NAME HERE +Copyright © 2024 Muratcan Senturk */ package cmd diff --git a/main.go b/main.go index 14f7e7d..966e101 100644 --- a/main.go +++ b/main.go @@ -1,5 +1,5 @@ /* -Copyright © 2024 NAME HERE +Copyright © 2024 Muratcan Senturk */ package main