├── .env.example ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json ├── res └── i18n │ └── en │ └── default.json ├── src ├── bot.js ├── commands │ ├── core │ │ └── ping.js │ └── test │ │ └── trial.js ├── middleware │ ├── logger.js │ └── parseMessage.js └── selfbot.js └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/package.json -------------------------------------------------------------------------------- /res/i18n/en/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/res/i18n/en/default.json -------------------------------------------------------------------------------- /src/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/src/bot.js -------------------------------------------------------------------------------- /src/commands/core/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/src/commands/core/ping.js -------------------------------------------------------------------------------- /src/commands/test/trial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/src/commands/test/trial.js -------------------------------------------------------------------------------- /src/middleware/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/src/middleware/logger.js -------------------------------------------------------------------------------- /src/middleware/parseMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/src/middleware/parseMessage.js -------------------------------------------------------------------------------- /src/selfbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/src/selfbot.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyraxo/yui/HEAD/yarn.lock --------------------------------------------------------------------------------