├── LICENSE ├── Procfile ├── README.md ├── config.json ├── index.js ├── mongo ├── README.md ├── bot.js ├── db.js └── package.json ├── package.json └── strings.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyanic76/discord-modmail/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: node bot.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyanic76/discord-modmail/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyanic76/discord-modmail/HEAD/config.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyanic76/discord-modmail/HEAD/index.js -------------------------------------------------------------------------------- /mongo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyanic76/discord-modmail/HEAD/mongo/README.md -------------------------------------------------------------------------------- /mongo/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyanic76/discord-modmail/HEAD/mongo/bot.js -------------------------------------------------------------------------------- /mongo/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyanic76/discord-modmail/HEAD/mongo/db.js -------------------------------------------------------------------------------- /mongo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyanic76/discord-modmail/HEAD/mongo/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyanic76/discord-modmail/HEAD/package.json -------------------------------------------------------------------------------- /strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyanic76/discord-modmail/HEAD/strings.json --------------------------------------------------------------------------------