mirror of
https://bitbucket.org/s_l_teichmann/mtsatellite
synced 2024-11-17 15:48:17 +01:00
Better usage message for mtredisalize
This commit is contained in:
parent
cbc5ed0c6c
commit
70e8d5a548
9
main.go
9
main.go
@ -20,6 +20,13 @@ const (
|
|||||||
GCDuration = "24h"
|
GCDuration = "24h"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func usage() {
|
||||||
|
fmt.Fprintf(os.Stderr,
|
||||||
|
"Usage: %s [<options>] <database>\n", os.Args[0])
|
||||||
|
fmt.Fprintln(os.Stderr, "Options:")
|
||||||
|
flag.PrintDefaults()
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -32,6 +39,8 @@ func main() {
|
|||||||
gcDuration string
|
gcDuration string
|
||||||
)
|
)
|
||||||
|
|
||||||
|
flag.Usage = usage
|
||||||
|
|
||||||
flag.IntVar(&port, "port", 6379, "port to bind")
|
flag.IntVar(&port, "port", 6379, "port to bind")
|
||||||
flag.StringVar(&driver, "driver", "leveldb", "type of database (leveldb, sqlite)")
|
flag.StringVar(&driver, "driver", "leveldb", "type of database (leveldb, sqlite)")
|
||||||
flag.StringVar(&host, "host", "", "host to bind")
|
flag.StringVar(&host, "host", "", "host to bind")
|
||||||
|
Loading…
Reference in New Issue
Block a user