(key string)
| 818 | func GetInt64(key string) int64 { return v.GetInt64(key) } |
| 819 | |
| 820 | func (v *Viper) GetInt64(key string) int64 { |
| 821 | return cast.ToInt64(v.Get(key)) |
| 822 | } |
| 823 | |
| 824 | // GetUint8 returns the value associated with the key as an unsigned integer. |
| 825 | func GetUint8(key string) uint8 { return v.GetUint8(key) } |