├── LICENSE ├── Readme.md ├── ci.yml ├── semaphore └── semaphore.go └── writer ├── writer.go └── writer_test.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/go-sync/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | 2 | # go-sync 3 | 4 | Some small synchronization helpers. 5 | 6 | # License 7 | 8 | MIT -------------------------------------------------------------------------------- /ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/go-sync/HEAD/ci.yml -------------------------------------------------------------------------------- /semaphore/semaphore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/go-sync/HEAD/semaphore/semaphore.go -------------------------------------------------------------------------------- /writer/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/go-sync/HEAD/writer/writer.go -------------------------------------------------------------------------------- /writer/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/go-sync/HEAD/writer/writer_test.go --------------------------------------------------------------------------------