├── .gitignore ├── README.md ├── duration.go ├── duration_test.go └── go.mod /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caarlos0/duration/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caarlos0/duration/HEAD/README.md -------------------------------------------------------------------------------- /duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caarlos0/duration/HEAD/duration.go -------------------------------------------------------------------------------- /duration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caarlos0/duration/HEAD/duration_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/caarlos0/duration 2 | 3 | go 1.16 4 | --------------------------------------------------------------------------------