bfde515391
* Edit config on Setup * Default to 1TiB storage space and 500GiB bandwidth * Use human readable formats * Use memory * units of 1024 are measured with KiB/MiB etc * pkg/cfgstruct: allow values to be configured with human readable sizes Change-Id: Ic4e9ae461516d1d26fb81f6e44c5ac5cfccf777f * Modify tests * Removed comments * More merge conflict stuff resolved * Fix lint * test fixin Change-Id: I3a008206bf03a4446da19f642a2f9c1f9acaae36 * Remove commented code but secretly leave it in the histroy forever * Move flag definition to struct
26 lines
815 B
Go
26 lines
815 B
Go
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package cfgstruct
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
// FlagSet is an interface that matches *pflag.FlagSet
|
|
type FlagSet interface {
|
|
BoolVar(p *bool, name string, value bool, usage string)
|
|
IntVar(p *int, name string, value int, usage string)
|
|
Int64Var(p *int64, name string, value int64, usage string)
|
|
UintVar(p *uint, name string, value uint, usage string)
|
|
Uint64Var(p *uint64, name string, value uint64, usage string)
|
|
DurationVar(p *time.Duration, name string, value time.Duration, usage string)
|
|
Float64Var(p *float64, name string, value float64, usage string)
|
|
StringVar(p *string, name string, value string, usage string)
|
|
Var(val pflag.Value, name string, usage string)
|
|
}
|
|
|
|
var _ FlagSet = (*pflag.FlagSet)(nil)
|