mirror of
https://github.com/grafana/grafana.git
synced 2026-03-10 10:11:18 -04:00
9 lines
121 B
Go
9 lines
121 B
Go
package util
|
|
|
|
// MinInt returns the smaller of x or y.
|
|
func MinInt(x, y int) int {
|
|
if x > y {
|
|
return y
|
|
}
|
|
return x
|
|
}
|