featurebase/ctl/config.go
reesporte 48aef0c8a4 add copyright notice back in
```bash
for file in `cat diffys`; do
   printf '%s\n%s\n' "// Copyright 2021 Molecula Corp. All rights reserved." "$(cat $file)" >$file;
done
```
2021-12-10 11:01:04 -06:00

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
}