mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-12 15:51:01 +00:00
Unexport cmd.NewConfigCommand
This commit is contained in:
parent
004f1c7df1
commit
b42c24eace
1 changed files with 2 additions and 2 deletions
|
|
@ -27,7 +27,7 @@ import (
|
|||
|
||||
var conf *ctl.ConfigCommand
|
||||
|
||||
func NewConfigCommand(stdin io.Reader, stdout, stderr io.Writer) *cobra.Command {
|
||||
func newConfigCommand(stdin io.Reader, stdout, stderr io.Writer) *cobra.Command {
|
||||
conf = ctl.NewConfigCommand(os.Stdin, os.Stdout, os.Stderr)
|
||||
Server := server.NewCommand(stdin, stdout, stderr)
|
||||
confCmd := &cobra.Command{
|
||||
|
|
@ -51,5 +51,5 @@ func NewConfigCommand(stdin io.Reader, stdout, stderr io.Writer) *cobra.Command
|
|||
}
|
||||
|
||||
func init() {
|
||||
subcommandFns["config"] = NewConfigCommand
|
||||
subcommandFns["config"] = newConfigCommand
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue