mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
```bash for file in `cat diffys`; do printf '%s\n%s\n' "// Copyright 2021 Molecula Corp. All rights reserved." "$(cat $file)" >$file; done ```
35 lines
804 B
Go
35 lines
804 B
Go
// Copyright 2021 Molecula Corp. All rights reserved.
|
|
package ctl
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/molecula/featurebase/v2"
|
|
"github.com/molecula/featurebase/v2/server"
|
|
toml "github.com/pelletier/go-toml"
|
|
)
|
|
|
|
// ConfigCommand represents a command for printing a default config.
|
|
type ConfigCommand struct {
|
|
*pilosa.CmdIO
|
|
Config *server.Config
|
|
}
|
|
|
|
// NewConfigCommand returns a new instance of ConfigCommand.
|
|
func NewConfigCommand(stdin io.Reader, stdout, stderr io.Writer) *ConfigCommand {
|
|
return &ConfigCommand{
|
|
CmdIO: pilosa.NewCmdIO(stdin, stdout, stderr),
|
|
}
|
|
}
|
|
|
|
// Run prints out the default config.
|
|
func (cmd *ConfigCommand) Run(_ context.Context) error {
|
|
buf, err := toml.Marshal(*cmd.Config)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Fprintln(cmd.Stdout, string(buf))
|
|
return nil
|
|
}
|