├── .gitignore ├── .travis.yml ├── LICENSE ├── client.go ├── example_client └── example_client.go ├── example_worker └── example_worker.go ├── worker.go └── worker_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tent/gokiq/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tent/gokiq/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tent/gokiq/HEAD/LICENSE -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tent/gokiq/HEAD/client.go -------------------------------------------------------------------------------- /example_client/example_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tent/gokiq/HEAD/example_client/example_client.go -------------------------------------------------------------------------------- /example_worker/example_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tent/gokiq/HEAD/example_worker/example_worker.go -------------------------------------------------------------------------------- /worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tent/gokiq/HEAD/worker.go -------------------------------------------------------------------------------- /worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tent/gokiq/HEAD/worker_test.go --------------------------------------------------------------------------------