Files
kubeshark/utils/units.go
T

8 lines
170 B
Go

package utils
import "github.com/docker/go-units"
func HumanReadableToBytes(humanReadableSize string) (int64, error) {
return units.FromHumanSize(humanReadableSize)
}