8 lines
101 B
Go
8 lines
101 B
Go
package handlers
|
|
|
|
import "strconv"
|
|
|
|
func parseInt(s string) (int, error) {
|
|
return strconv.Atoi(s)
|
|
}
|