cloud-game/pkg/util/common.go
sergystepanov 83efc733a8
Add game library module (#232)
* Add game library

* Add missing local game lib files

* Add missing return statement

* Use v2 suffix

* Bump the dependencies
2020-10-10 21:42:06 +08:00

8 lines
84 B
Go

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