├── .env.example ├── .gitignore ├── config.json ├── package.json ├── readme.md └── src ├── commands └── info │ └── ping.js ├── events ├── error.js ├── messageCreate.js └── ready.js ├── handler ├── commands.js └── mongoose.js └── index.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandhu-44/eris-handler/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandhu-44/eris-handler/HEAD/.gitignore -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "prefix": "?" 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandhu-44/eris-handler/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandhu-44/eris-handler/HEAD/readme.md -------------------------------------------------------------------------------- /src/commands/info/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandhu-44/eris-handler/HEAD/src/commands/info/ping.js -------------------------------------------------------------------------------- /src/events/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandhu-44/eris-handler/HEAD/src/events/error.js -------------------------------------------------------------------------------- /src/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandhu-44/eris-handler/HEAD/src/events/messageCreate.js -------------------------------------------------------------------------------- /src/events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandhu-44/eris-handler/HEAD/src/events/ready.js -------------------------------------------------------------------------------- /src/handler/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandhu-44/eris-handler/HEAD/src/handler/commands.js -------------------------------------------------------------------------------- /src/handler/mongoose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandhu-44/eris-handler/HEAD/src/handler/mongoose.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandhu-44/eris-handler/HEAD/src/index.js --------------------------------------------------------------------------------