func min()

in provider/parameter_store_provider.go [208:213]


func min(i, j int) int {
	if i > j {
		return j
	}
	return i
}