mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
Unexport cmd.NewImportCommand
This commit is contained in:
parent
4ec7a05524
commit
c86758e998
1 changed files with 3 additions and 3 deletions
|
|
@ -25,8 +25,8 @@ import (
|
|||
|
||||
var Importer *ctl.ImportCommand
|
||||
|
||||
// NewImportCommand runs the Pilosa import subcommand for ingesting bulk data.
|
||||
func NewImportCommand(stdin io.Reader, stdout, stderr io.Writer) *cobra.Command {
|
||||
// newImportCommand runs the Pilosa import subcommand for ingesting bulk data.
|
||||
func newImportCommand(stdin io.Reader, stdout, stderr io.Writer) *cobra.Command {
|
||||
Importer = ctl.NewImportCommand(stdin, stdout, stderr)
|
||||
importCmd := &cobra.Command{
|
||||
Use: "import",
|
||||
|
|
@ -67,5 +67,5 @@ omitted. If it is present then its format should be YYYY-MM-DDTHH:MM.
|
|||
}
|
||||
|
||||
func init() {
|
||||
subcommandFns["import"] = NewImportCommand
|
||||
subcommandFns["import"] = newImportCommand
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue