6 lines
82 B
Go
6 lines
82 B
Go
package helper
|
|
|
|
func MegabyteToByte(mb int) int64 {
|
|
return int64(mb) * 1000000
|
|
}
|