├── LICENSE ├── README.md ├── appservice ├── README.md ├── appservice.py ├── cache.py ├── db.py ├── discord.py ├── errors.py ├── gateway.py ├── main.py ├── matrix.py ├── misc.py └── requirements.txt ├── bridge ├── README.md ├── bridge.py ├── cogs │ └── .keep └── requirements.txt ├── demo.png └── misc └── migrate_emotes.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/README.md -------------------------------------------------------------------------------- /appservice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/appservice/README.md -------------------------------------------------------------------------------- /appservice/appservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/appservice/appservice.py -------------------------------------------------------------------------------- /appservice/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/appservice/cache.py -------------------------------------------------------------------------------- /appservice/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/appservice/db.py -------------------------------------------------------------------------------- /appservice/discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/appservice/discord.py -------------------------------------------------------------------------------- /appservice/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/appservice/errors.py -------------------------------------------------------------------------------- /appservice/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/appservice/gateway.py -------------------------------------------------------------------------------- /appservice/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/appservice/main.py -------------------------------------------------------------------------------- /appservice/matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/appservice/matrix.py -------------------------------------------------------------------------------- /appservice/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/appservice/misc.py -------------------------------------------------------------------------------- /appservice/requirements.txt: -------------------------------------------------------------------------------- 1 | bottle 2 | markdown 3 | urllib3 4 | websockets 5 | -------------------------------------------------------------------------------- /bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/bridge/README.md -------------------------------------------------------------------------------- /bridge/bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/bridge/bridge.py -------------------------------------------------------------------------------- /bridge/cogs/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bridge/requirements.txt: -------------------------------------------------------------------------------- 1 | discord.py==2.0.1 2 | matrix-nio==0.19.0 3 | -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/demo.png -------------------------------------------------------------------------------- /misc/migrate_emotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-bruh/matrix-discord-bridge/HEAD/misc/migrate_emotes.py --------------------------------------------------------------------------------