config.go 304 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
package fs

type Config interface {
	Architecture() string
	String(string, ...string) string
	Uint(string, ...uint32) uint32
	Float(string, ...float32) float32
	Bool(string, ...bool) bool

	Strings(string, ...[]string) []string
Michael Yang's avatar
Michael Yang committed
11
	Ints(string, ...[]int32) []int32
12
13
	Floats(string, ...[]float32) []float32
}