mirror of
https://github.com/onyx-and-iris/xair-cli.git
synced 2026-02-03 23:17:47 +00:00
14 lines
174 B
Go
14 lines
174 B
Go
package cmd
|
|
|
|
import (
|
|
"strconv"
|
|
)
|
|
|
|
func mustConv(levelStr string) float64 {
|
|
level, err := strconv.ParseFloat(levelStr, 64)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return level
|
|
}
|