influxdb/pkg/data/gen/util.go

9 lines
76 B
Go

package gen
func min(a, b int) int {
if a < b {
return a
}
return b
}