Files
web/server/handlers/helpers.go
2026-03-17 01:00:11 +08:00

8 lines
101 B
Go

package handlers
import "strconv"
func parseInt(s string) (int, error) {
return strconv.Atoi(s)
}