├── .gitignore ├── LICENSE ├── irc.nimble ├── readme.markdown ├── src └── irc.nim └── tests ├── asyncclient.nim ├── nim.cfg └── syncclient.nim /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/irc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/irc/HEAD/LICENSE -------------------------------------------------------------------------------- /irc.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/irc/HEAD/irc.nimble -------------------------------------------------------------------------------- /readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/irc/HEAD/readme.markdown -------------------------------------------------------------------------------- /src/irc.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/irc/HEAD/src/irc.nim -------------------------------------------------------------------------------- /tests/asyncclient.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/irc/HEAD/tests/asyncclient.nim -------------------------------------------------------------------------------- /tests/nim.cfg: -------------------------------------------------------------------------------- 1 | path = "../src" 2 | --noBabelPath 3 | -------------------------------------------------------------------------------- /tests/syncclient.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/irc/HEAD/tests/syncclient.nim --------------------------------------------------------------------------------