123456789101112131415161718192021 |
- package command
- import (
- "fmt"
- "github.com/spf13/cobra"
- )
- var UninstallSchemaCommand = &cobra.Command{
- Use: "schema",
- Short: "Uninstall schema",
- Long: "Uninstall the kurz database schema",
- Run: uninstallSchemaCommand,
- }
- func uninstallSchemaCommand(c *cobra.Command, args []string) {
- fmt.Println("Pretend to uninstall the kurz database schema.")
- }
- func init() {
- UninstallCommand.AddCommand(UninstallSchemaCommand)
- }
|