Update something

This commit is contained in:
bufferstack 2024-10-26 17:13:06 -04:00
parent 8956254e1a
commit ef36c1344f

View File

@ -1,27 +1,27 @@
/* /*
Copyright © 2024 NAME HERE <EMAIL ADDRESS> Copyright © 2024 tiff github@tifflabs.org
*/ */
package cmd package cmd
import ( import (
"os" "os"
"encoding/csv"
"strconv"
"text/tabwriter"
"github.com/mergestat/timediff"
"github.com/spf13/cobra" "github.com/spf13/cobra"
"errors"
) )
// rootCmd represents the base command when called without any subcommands // rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{ var rootCmd = &cobra.Command{
Use: "goto-do", Use: `goto-do`,
Short: "A brief description of your application", Short: `CLI todo CRUD app`,
Long: `A longer description that spans multiple lines and likely contains Long: `CLI todo app where you can create, update, and delete tasks all
examples and usage of using your application. For example: from the command line. Written in Go`
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 // Uncomment the following line if your bare application
// has an action associated with it: // has an action associated with it:
// Run: func(cmd *cobra.Command, args []string) { }, // Run: func(cmd *cobra.Command, args []string) { },