github.com/sqlitebrowser/dio@v0.0.0-20240125125356-b587368e5c6b/cmd/tag.go (about)

     1  package cmd
     2  
     3  import (
     4  	"github.com/spf13/cobra"
     5  )
     6  
     7  var tagCmd = &cobra.Command{
     8  	Use:   "tag",
     9  	Short: "Create and remove tags for a database",
    10  }
    11  
    12  func init() {
    13  	RootCmd.AddCommand(tagCmd)
    14  }