├── .github └── workflows │ └── gommon.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bytes ├── README.md ├── bytes.go └── bytes_test.go ├── color ├── README.md ├── color.go └── color_test.go ├── email ├── email.go └── email_test.go ├── go.mod ├── go.sum ├── gommon.go ├── log ├── README.md ├── color.go ├── log.go ├── log_test.go └── white.go └── random ├── random.go └── random_test.go /.github/workflows/gommon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/.github/workflows/gommon.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | coverage.txt 3 | _test 4 | vendor 5 | .idea 6 | *.iml 7 | *.out 8 | .vscode 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/README.md -------------------------------------------------------------------------------- /bytes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/bytes/README.md -------------------------------------------------------------------------------- /bytes/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/bytes/bytes.go -------------------------------------------------------------------------------- /bytes/bytes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/bytes/bytes_test.go -------------------------------------------------------------------------------- /color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/color/README.md -------------------------------------------------------------------------------- /color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/color/color.go -------------------------------------------------------------------------------- /color/color_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/color/color_test.go -------------------------------------------------------------------------------- /email/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/email/email.go -------------------------------------------------------------------------------- /email/email_test.go: -------------------------------------------------------------------------------- 1 | package email 2 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/go.sum -------------------------------------------------------------------------------- /gommon.go: -------------------------------------------------------------------------------- 1 | package gommon 2 | -------------------------------------------------------------------------------- /log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/log/README.md -------------------------------------------------------------------------------- /log/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/log/color.go -------------------------------------------------------------------------------- /log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/log/log.go -------------------------------------------------------------------------------- /log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/log/log_test.go -------------------------------------------------------------------------------- /log/white.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/log/white.go -------------------------------------------------------------------------------- /random/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/random/random.go -------------------------------------------------------------------------------- /random/random_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstack/gommon/HEAD/random/random_test.go --------------------------------------------------------------------------------