├── .eslintrc.json ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.js ├── commands ├── help.js ├── ping.js └── say.js ├── conf.json ├── events ├── message.js └── ready.js ├── package.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmentor-network/find-mentor-dcbot/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmentor-network/find-mentor-dcbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmentor-network/find-mentor-dcbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: npm start -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmentor-network/find-mentor-dcbot/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmentor-network/find-mentor-dcbot/HEAD/app.js -------------------------------------------------------------------------------- /commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmentor-network/find-mentor-dcbot/HEAD/commands/help.js -------------------------------------------------------------------------------- /commands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmentor-network/find-mentor-dcbot/HEAD/commands/ping.js -------------------------------------------------------------------------------- /commands/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmentor-network/find-mentor-dcbot/HEAD/commands/say.js -------------------------------------------------------------------------------- /conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmentor-network/find-mentor-dcbot/HEAD/conf.json -------------------------------------------------------------------------------- /events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmentor-network/find-mentor-dcbot/HEAD/events/message.js -------------------------------------------------------------------------------- /events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmentor-network/find-mentor-dcbot/HEAD/events/ready.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmentor-network/find-mentor-dcbot/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmentor-network/find-mentor-dcbot/HEAD/yarn.lock --------------------------------------------------------------------------------