mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
Unexport cmd.NewInspectCommand
This commit is contained in:
parent
c86758e998
commit
18fd2e14c5
1 changed files with 2 additions and 2 deletions
|
|
@ -27,7 +27,7 @@ import (
|
|||
|
||||
var inspector *ctl.InspectCommand
|
||||
|
||||
func NewInspectCommand(stdin io.Reader, stdout, stderr io.Writer) *cobra.Command {
|
||||
func newInspectCommand(stdin io.Reader, stdout, stderr io.Writer) *cobra.Command {
|
||||
inspector = ctl.NewInspectCommand(os.Stdin, os.Stdout, os.Stderr)
|
||||
|
||||
inspectCmd := &cobra.Command{
|
||||
|
|
@ -53,5 +53,5 @@ Inspects a data file and provides stats.
|
|||
}
|
||||
|
||||
func init() {
|
||||
subcommandFns["inspect"] = NewInspectCommand
|
||||
subcommandFns["inspect"] = newInspectCommand
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue