├── .gitignore ├── LICENSE ├── README.md ├── configExample.js ├── package.json ├── reply.js ├── screenshots └── .gitkeep ├── tweetListener.js ├── utils.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | config.js 2 | node_modules 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/Twitter-Result-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/Twitter-Result-Bot/HEAD/README.md -------------------------------------------------------------------------------- /configExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/Twitter-Result-Bot/HEAD/configExample.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/Twitter-Result-Bot/HEAD/package.json -------------------------------------------------------------------------------- /reply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/Twitter-Result-Bot/HEAD/reply.js -------------------------------------------------------------------------------- /screenshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tweetListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/Twitter-Result-Bot/HEAD/tweetListener.js -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/Twitter-Result-Bot/HEAD/utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamJoker/Twitter-Result-Bot/HEAD/yarn.lock --------------------------------------------------------------------------------