blob: d49141d11ede6c47c0b603633329f212b28252e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package model
import (
"fmt"
"strconv"
)
func isInt(s string) error {
_, err := strconv.Atoi(s)
if err != nil {
return fmt.Errorf("'%s' cannot be casted to integer", s)
}
return nil
}
func isPositiveOrZeroInt(s string) error {
i, err := strconv.Atoi(s)
if err != nil {
return fmt.Errorf("'%s' cannot be casted to integer", s)
}
if i < 0 {
return fmt.Errorf("'%s' is negative", s)
}
return nil
}
|