├── .gitignore ├── .travis.yml ├── README.md ├── dub.json └── src ├── api ├── routes │ ├── package.d │ └── user.d └── server.d ├── gateway └── server.d ├── main.d ├── server.d ├── state.d └── voice └── server.d /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/mockcord/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/mockcord/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/mockcord/HEAD/README.md -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/mockcord/HEAD/dub.json -------------------------------------------------------------------------------- /src/api/routes/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/mockcord/HEAD/src/api/routes/package.d -------------------------------------------------------------------------------- /src/api/routes/user.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/mockcord/HEAD/src/api/routes/user.d -------------------------------------------------------------------------------- /src/api/server.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/mockcord/HEAD/src/api/server.d -------------------------------------------------------------------------------- /src/gateway/server.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/mockcord/HEAD/src/gateway/server.d -------------------------------------------------------------------------------- /src/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/mockcord/HEAD/src/main.d -------------------------------------------------------------------------------- /src/server.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/mockcord/HEAD/src/server.d -------------------------------------------------------------------------------- /src/state.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/mockcord/HEAD/src/state.d -------------------------------------------------------------------------------- /src/voice/server.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/mockcord/HEAD/src/voice/server.d --------------------------------------------------------------------------------