├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── robots ├── image.js ├── input.js ├── state.js ├── text.js ├── video.js └── youtube.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britotiagos/youtube-video-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britotiagos/youtube-video-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britotiagos/youtube-video-bot/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britotiagos/youtube-video-bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britotiagos/youtube-video-bot/HEAD/package.json -------------------------------------------------------------------------------- /robots/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britotiagos/youtube-video-bot/HEAD/robots/image.js -------------------------------------------------------------------------------- /robots/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britotiagos/youtube-video-bot/HEAD/robots/input.js -------------------------------------------------------------------------------- /robots/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britotiagos/youtube-video-bot/HEAD/robots/state.js -------------------------------------------------------------------------------- /robots/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britotiagos/youtube-video-bot/HEAD/robots/text.js -------------------------------------------------------------------------------- /robots/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britotiagos/youtube-video-bot/HEAD/robots/video.js -------------------------------------------------------------------------------- /robots/youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britotiagos/youtube-video-bot/HEAD/robots/youtube.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britotiagos/youtube-video-bot/HEAD/yarn.lock --------------------------------------------------------------------------------