databricks-cli/cmd/bundle/show.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
440 B
Go
Raw Permalink Normal View History

2025-03-09 20:17:56 +00:00
package bundle
import (
"errors"
"github.com/spf13/cobra"
)
func newShowCommand(hidden bool) *cobra.Command {
cmd := &cobra.Command{
Use: "show",
Short: "Show a preview for a table",
Long: `Show a preview for a table.`,
// We're not ready to expose this command until we specify its semantics.
Hidden: hidden,
}
cmd.RunE = func(cmd *cobra.Command, args []string) error {
return errors.New("TODO")
}
return cmd
}