mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-02-14 18:09:51 +00:00
8 lines
170 B
Go
8 lines
170 B
Go
package utils
|
|
|
|
import "github.com/docker/go-units"
|
|
|
|
func HumanReadableToBytes(humanReadableSize string) (int64, error) {
|
|
return units.FromHumanSize(humanReadableSize)
|
|
}
|