50 lines
1.2 KiB
Go
50 lines
1.2 KiB
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-lens/internal/blobovnicza"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-lens/internal/meta"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-lens/internal/writecache"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/misc"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/gendoc"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var command = &cobra.Command{
|
|
Use: "frostfs-lens",
|
|
Short: "FrostFS Storage Engine Lens",
|
|
Long: `FrostFS Storage Engine Lens provides tools to browse the contents of the FrostFS storage engine.`,
|
|
RunE: entryPoint,
|
|
SilenceUsage: true,
|
|
}
|
|
|
|
func entryPoint(cmd *cobra.Command, _ []string) error {
|
|
printVersion, _ := cmd.Flags().GetBool("version")
|
|
if printVersion {
|
|
cmd.Print(misc.BuildInfo("FrostFS Lens"))
|
|
|
|
return nil
|
|
}
|
|
|
|
return cmd.Usage()
|
|
}
|
|
|
|
func init() {
|
|
// use stdout as default output for cmd.Print()
|
|
command.SetOut(os.Stdout)
|
|
command.Flags().Bool("version", false, "Application version")
|
|
command.AddCommand(
|
|
blobovnicza.Root,
|
|
meta.Root,
|
|
writecache.Root,
|
|
gendoc.Command(command, gendoc.Options{}),
|
|
)
|
|
}
|
|
|
|
func main() {
|
|
err := command.Execute()
|
|
if err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|