├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── bashbot.sh ├── commands.json ├── commands ├── info.sh └── ping.sh ├── index.js ├── package.json └── timers.sh /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordlinux/bot/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | 4 | 5 | .env 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordlinux/bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordlinux/bot/HEAD/README.md -------------------------------------------------------------------------------- /bashbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordlinux/bot/HEAD/bashbot.sh -------------------------------------------------------------------------------- /commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordlinux/bot/HEAD/commands.json -------------------------------------------------------------------------------- /commands/info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordlinux/bot/HEAD/commands/info.sh -------------------------------------------------------------------------------- /commands/ping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordlinux/bot/HEAD/commands/ping.sh -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordlinux/bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordlinux/bot/HEAD/package.json -------------------------------------------------------------------------------- /timers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordlinux/bot/HEAD/timers.sh --------------------------------------------------------------------------------