polycule-connect/polyculeconnect/cmd/db/db.go
Melora Hugues 3ca1a9a51c
Some checks failed
/ go-test (push) Failing after 51s
/ docker-build-only (push) Successful in 1m41s
Chore: remove generated cobra comments and improve help messages
2024-08-10 16:27:49 +02:00

17 lines
302 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)
}