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

     1  package cmd
     2  
     3  import (
     4  	"github.com/spf13/cobra"
     5  )
     6  
     7  var branchActiveCmd = &cobra.Command{
     8  	Use:   "active",
     9  	Short: "Get and set the active branch for a database",
    10  }
    11  
    12  func init() {
    13  	branchCmd.AddCommand(branchActiveCmd)
    14  }