├── .gitignore ├── LICENSE ├── README.md ├── example.js ├── index.js ├── package.json └── src ├── Client.js ├── structures ├── Ack.js ├── Base.js └── Message.js └── util ├── Constants.js ├── Util.js └── WAPI.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oqhadev/waweb-phi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oqhadev/waweb-phi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oqhadev/waweb-phi/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oqhadev/waweb-phi/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./src/Client'); 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oqhadev/waweb-phi/HEAD/package.json -------------------------------------------------------------------------------- /src/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oqhadev/waweb-phi/HEAD/src/Client.js -------------------------------------------------------------------------------- /src/structures/Ack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oqhadev/waweb-phi/HEAD/src/structures/Ack.js -------------------------------------------------------------------------------- /src/structures/Base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oqhadev/waweb-phi/HEAD/src/structures/Base.js -------------------------------------------------------------------------------- /src/structures/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oqhadev/waweb-phi/HEAD/src/structures/Message.js -------------------------------------------------------------------------------- /src/util/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oqhadev/waweb-phi/HEAD/src/util/Constants.js -------------------------------------------------------------------------------- /src/util/Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oqhadev/waweb-phi/HEAD/src/util/Util.js -------------------------------------------------------------------------------- /src/util/WAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oqhadev/waweb-phi/HEAD/src/util/WAPI.js --------------------------------------------------------------------------------