Vendor dependencies with dep and commit vendor/

This commit is contained in:
Matthias Loibl 2018-04-28 16:12:36 +02:00
parent 2ef36da33a
commit 4c1f31f272
No known key found for this signature in database
GPG key ID: B1C7DF661ABB2C1A
38 changed files with 9490 additions and 0 deletions

13
vendor/github.com/alecthomas/units/doc.go generated vendored Normal file
View file

@ -0,0 +1,13 @@
// 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