├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── stopwatch.go └── stopwatch_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/stopwatch/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 1.3 3 | 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/stopwatch/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/stopwatch/HEAD/README.md -------------------------------------------------------------------------------- /stopwatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/stopwatch/HEAD/stopwatch.go -------------------------------------------------------------------------------- /stopwatch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/stopwatch/HEAD/stopwatch_test.go --------------------------------------------------------------------------------