├── .gitignore ├── README.md ├── client ├── assets │ ├── check.svg │ ├── cross.svg │ ├── icon.svg │ └── loader.gif └── index.html ├── index.js ├── package.json └── packageOld.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Israel-Almanza/baileys-tutorial-v1/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Israel-Almanza/baileys-tutorial-v1/HEAD/README.md -------------------------------------------------------------------------------- /client/assets/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Israel-Almanza/baileys-tutorial-v1/HEAD/client/assets/check.svg -------------------------------------------------------------------------------- /client/assets/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Israel-Almanza/baileys-tutorial-v1/HEAD/client/assets/cross.svg -------------------------------------------------------------------------------- /client/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Israel-Almanza/baileys-tutorial-v1/HEAD/client/assets/icon.svg -------------------------------------------------------------------------------- /client/assets/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Israel-Almanza/baileys-tutorial-v1/HEAD/client/assets/loader.gif -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Israel-Almanza/baileys-tutorial-v1/HEAD/client/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Israel-Almanza/baileys-tutorial-v1/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Israel-Almanza/baileys-tutorial-v1/HEAD/package.json -------------------------------------------------------------------------------- /packageOld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Israel-Almanza/baileys-tutorial-v1/HEAD/packageOld.json --------------------------------------------------------------------------------