27 lines
705 B
Go
27 lines
705 B
Go
package db
|
|
|
|
import (
|
|
"git.faercol.me/faercol/polyculeconnect/polyculeconnect/cmd"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// dbCmd represents the db command
|
|
var dbCmd = &cobra.Command{
|
|
Use: "db",
|
|
Short: "Manage the database",
|
|
Long: `Manage the database.`,
|
|
}
|
|
|
|
func init() {
|
|
cmd.RootCmd.AddCommand(dbCmd)
|
|
|
|
// Here you will define your flags and configuration settings.
|
|
|
|
// Cobra supports Persistent Flags which will work for this command
|
|
// and all subcommands, e.g.:
|
|
// dbCmd.PersistentFlags().String("foo", "", "A help for foo")
|
|
|
|
// Cobra supports local flags which will only run when this command
|
|
// is called directly, e.g.:
|
|
// dbCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
|
|
}
|