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