8 lines
113 B
Go
8 lines
113 B
Go
|
|
package Utils
|
||
|
|
|
||
|
|
import "fmt"
|
||
|
|
|
||
|
|
func PriceConvert(num int) string {
|
||
|
|
return fmt.Sprintf("%.2f", float64(num)/100)
|
||
|
|
}
|