urfave-cli/altsrc/input_source_context.go

28 lines
680 B
Go
Raw Normal View History

package altsrc
import (
"time"
"github.com/urfave/cli/v2"
)
// InputSourceContext is an interface used to allow
// other input sources to be implemented as needed.
2017-09-26 12:38:41 +00:00
//
// Source returns an identifier for the input source. In case of file source
// it should return path to the file.
type InputSourceContext interface {
2017-09-26 12:38:41 +00:00
Source() string
Int(name string) (int, error)
Duration(name string) (time.Duration, error)
Float64(name string) (float64, error)
String(name string) (string, error)
StringSlice(name string) ([]string, error)
IntSlice(name string) ([]int, error)
Generic(name string) (cli.Generic, error)
Bool(name string) (bool, error)
isSet(name string) bool
}