├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── timer.go └── timer_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaonanln/goTimer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaonanln/goTimer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaonanln/goTimer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaonanln/goTimer/HEAD/README.md -------------------------------------------------------------------------------- /timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaonanln/goTimer/HEAD/timer.go -------------------------------------------------------------------------------- /timer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaonanln/goTimer/HEAD/timer_test.go --------------------------------------------------------------------------------