├── .gitignore ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── README.md ├── deadman.go ├── deadman_test.go └── main.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gouthamve/deadman/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gouthamve/deadman/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gouthamve/deadman/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gouthamve/deadman/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gouthamve/deadman/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gouthamve/deadman/HEAD/README.md -------------------------------------------------------------------------------- /deadman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gouthamve/deadman/HEAD/deadman.go -------------------------------------------------------------------------------- /deadman_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gouthamve/deadman/HEAD/deadman_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gouthamve/deadman/HEAD/main.go --------------------------------------------------------------------------------