├── .env.example ├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── README.md ├── bot.js ├── commands └── nswf │ ├── hentai-img.js │ ├── trap-img.js │ └── yaoi-img.js ├── handlers └── buttons │ ├── nswfImages-btn.js │ └── start-btn.js ├── index.js └── package.json /.env.example: -------------------------------------------------------------------------------- 1 | TELEGTAM_TOKEN= 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachey01/nswf-tg-bot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | package-lock.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachey01/nswf-tg-bot/HEAD/README.md -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachey01/nswf-tg-bot/HEAD/bot.js -------------------------------------------------------------------------------- /commands/nswf/hentai-img.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachey01/nswf-tg-bot/HEAD/commands/nswf/hentai-img.js -------------------------------------------------------------------------------- /commands/nswf/trap-img.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachey01/nswf-tg-bot/HEAD/commands/nswf/trap-img.js -------------------------------------------------------------------------------- /commands/nswf/yaoi-img.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachey01/nswf-tg-bot/HEAD/commands/nswf/yaoi-img.js -------------------------------------------------------------------------------- /handlers/buttons/nswfImages-btn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachey01/nswf-tg-bot/HEAD/handlers/buttons/nswfImages-btn.js -------------------------------------------------------------------------------- /handlers/buttons/start-btn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachey01/nswf-tg-bot/HEAD/handlers/buttons/start-btn.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachey01/nswf-tg-bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachey01/nswf-tg-bot/HEAD/package.json --------------------------------------------------------------------------------