├── .github └── workflows │ └── flake8.yaml ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── discordbot.py ├── requirements.txt └── runtime.txt /.github/workflows/flake8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akam1o/discord-channel-mirror-bot/HEAD/.github/workflows/flake8.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akam1o/discord-channel-mirror-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akam1o/discord-channel-mirror-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akam1o/discord-channel-mirror-bot/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akam1o/discord-channel-mirror-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akam1o/discord-channel-mirror-bot/HEAD/app.json -------------------------------------------------------------------------------- /discordbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akam1o/discord-channel-mirror-bot/HEAD/discordbot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | discord.py[voice]>=1.4.1 2 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.5 2 | --------------------------------------------------------------------------------