You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
304 B
14 lines
304 B
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
|
|
Ints(string, ...[]int32) []int32
|
|
Floats(string, ...[]float32) []float32
|
|
}
|