mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-06 16:45:55 +00:00
Unexport cmd.NewExportCommand
This commit is contained in:
parent
b42c24eace
commit
da4e3b0e14
1 changed files with 2 additions and 2 deletions
|
|
@ -26,7 +26,7 @@ import (
|
|||
|
||||
var Exporter *ctl.ExportCommand
|
||||
|
||||
func NewExportCommand(stdin io.Reader, stdout, stderr io.Writer) *cobra.Command {
|
||||
func newExportCommand(stdin io.Reader, stdout, stderr io.Writer) *cobra.Command {
|
||||
Exporter = ctl.NewExportCommand(os.Stdin, os.Stdout, os.Stderr)
|
||||
exportCmd := &cobra.Command{
|
||||
Use: "export",
|
||||
|
|
@ -60,5 +60,5 @@ The file does not contain any headers.
|
|||
}
|
||||
|
||||
func init() {
|
||||
subcommandFns["export"] = NewExportCommand
|
||||
subcommandFns["export"] = newExportCommand
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue