1 2 3 4 5
package utils func ValueMinusPercent(val int, percentage float64) int { return int(float64(val) - float64(val)*percentage) }