scorch

package
v1.0.14 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 8, 2020 License: Apache-2.0 Imports: 7 Imported by: 37

Documentation

Index

Constants

This section is empty.

Variables

View Source
var RootCmd = &cobra.Command{
	Use:   "scorch",
	Short: "command-line tool to interact with a scorch index",
	Long:  `Scorch is a command-line tool to interact with a scorch index.`,
	PersistentPreRunE: func(cmd *cobra.Command, args []string) error {

		if len(args) < 1 {
			return fmt.Errorf("must specify path to scorch index")
		}

		readOnly := true
		config := map[string]interface{}{
			"read_only": readOnly,
			"path":      args[0],
		}

		idx, err := scorch.NewScorch(scorch.Name, config, nil)
		if err != nil {
			return err
		}

		err = idx.Open()
		if err != nil {
			return fmt.Errorf("error opening: %v", err)
		}

		index = idx.(*scorch.Scorch)

		return nil
	},
	PersistentPostRunE: func(cmd *cobra.Command, args []string) error {
		return nil
	},
}

RootCmd represents the base command when called without any subcommands

Functions

func Execute

func Execute()

Execute adds all child commands to the root command sets flags appropriately. This is called by main.main(). It only needs to happen once to the rootCmd.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL