10 lines
155 B
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
|
||
|
}
|