Add missing vendor

This commit is contained in:
Calle Pettersson
2017-08-12 08:02:04 +01:00
parent 5ecdfe9498
commit 33c5e99e0f
4 changed files with 735 additions and 0 deletions

11
vendor/github.com/alecthomas/units/README.md generated vendored Normal file
View File

@@ -0,0 +1,11 @@
# Units - Helpful unit multipliers and functions for Go
The goal of this package is to have functionality similar to the [time](http://golang.org/pkg/time/) package.
It allows for code like this:
```go
n, err := ParseBase2Bytes("1KB")
// n == 1024
n = units.Mebibyte * 512
```