zookeeper/get_int.go

10 lines
155 B
Go

package zookeeper
import "strconv"
// GetIntValue ...
func GetIntValue(path string) int {
s := GetStringValue(path)
v, _ := strconv.Atoi(s)
return v
}