├── .github └── workflows │ └── test.yml ├── LICENSE ├── README.md ├── duration.go ├── duration_test.go └── go.mod /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhellberg/duration/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhellberg/duration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhellberg/duration/HEAD/README.md -------------------------------------------------------------------------------- /duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhellberg/duration/HEAD/duration.go -------------------------------------------------------------------------------- /duration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhellberg/duration/HEAD/duration_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/peterhellberg/duration 2 | 3 | go 1.19 4 | --------------------------------------------------------------------------------