pixivfe/handler/helpers.go
2023-06-15 20:19:14 +07:00

8 lines
80 B
Go

package handler
func Min(x, y int) int {
if x < y {
return x
}
return y
}