├── .gitignore ├── LICENSE ├── README.md ├── examples ├── pool_example.go └── web_crawler.go ├── pool.go └── pool_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefantalpalaru/pool/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefantalpalaru/pool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefantalpalaru/pool/HEAD/README.md -------------------------------------------------------------------------------- /examples/pool_example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefantalpalaru/pool/HEAD/examples/pool_example.go -------------------------------------------------------------------------------- /examples/web_crawler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefantalpalaru/pool/HEAD/examples/web_crawler.go -------------------------------------------------------------------------------- /pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefantalpalaru/pool/HEAD/pool.go -------------------------------------------------------------------------------- /pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefantalpalaru/pool/HEAD/pool_test.go --------------------------------------------------------------------------------