AUTH-2596 added new logger package and replaced logrus

This commit is contained in:
Dalton
2020-05-27 17:07:19 -05:00
parent a908453aa4
commit 046be63253
158 changed files with 2027 additions and 5771 deletions
+13
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