3e343b683b
Change-Id: I106c6795946283165ba3de8465e5898346da1a3f
26 lines
487 B
Go
26 lines
487 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/spacemonkeygo/monkit/v3"
|
|
"github.com/spf13/cobra"
|
|
|
|
"storj.io/private/process"
|
|
_ "storj.io/storj/private/version" // This attaches version information during release builds.
|
|
)
|
|
|
|
var (
|
|
mon = monkit.Package()
|
|
|
|
rootCmd = &cobra.Command{
|
|
Use: "segment-reaper",
|
|
Short: "A tool for detecting and deleting zombie segments",
|
|
}
|
|
)
|
|
|
|
func main() {
|
|
process.Exec(rootCmd)
|
|
}
|