yemot-new-api
v4.0.7
Published
```bash npm i yemot-new-api ``` מבוסס המודול ש- musicode1 בנה. כאן אני משפר הכל # exemple ```js const yemot_api = require("./");
Downloads
16
Readme
yemot-api
install
npm i yemot-new-api
מבוסס המודול ש- musicode1 בנה. כאן אני משפר הכל
exemple
const yemot_api = require("./");
(async () => {
const y = new yemot_api("0773137770", "1234");
/** קבלת מספר יחידות */
let r = await y.get_session();
console.log(r);
/** העלאת קובץ */
try {
let data = await y.upload_big_audio("ivr/111","./video.mp4",true);
console.log(data);
/** הורדת קובץ */
} catch (error) {
console.error(error);
}
})();