Files
AynaLivePlayer/pkg/util/integer.go
aynakeya fd872c1f5b update
2024-04-13 00:59:44 -07:00

9 lines
80 B
Go

package util
func IntMin(x, y int) int {
if x < y {
return x
}
return y
}