Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314
  1. package common
  2. import (
  3. "strconv"
  4. )
  5. // MustAtoi converts the input string to an integer and panics on failure.
  6. func MustAtoi(input string) int {
  7. res, err := strconv.Atoi(input)
  8. if err != nil {
  9. panic(err)
  10. }
  11. return res
  12. }