mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-12 16:44:18 -08:00
dfe07eaae8
* Switch to kingpin flags * Fix logrus vendoring * Fix flags in main tests * Fix vendoring versions
14 lines
348 B
Go
14 lines
348 B
Go
// Package units provides helpful unit multipliers and functions for Go.
|
|
//
|
|
// The goal of this package is to have functionality similar to the time [1] package.
|
|
//
|
|
//
|
|
// [1] http://golang.org/pkg/time/
|
|
//
|
|
// It allows for code like this:
|
|
//
|
|
// n, err := ParseBase2Bytes("1KB")
|
|
// // n == 1024
|
|
// n = units.Mebibyte * 512
|
|
package units
|