Files
website/internal/helpers/strconv.go

9 lines
98 B
Go

package helpers
import "strconv"
func Atoi(s string) int {
n, _ := strconv.Atoi(s)
return n
}