ssn/src/installPatch.ts

13 lines
364 B
TypeScript
Raw Normal View History

2018-07-04 19:25:22 +02:00
import getPatch from './ssn/getPatch';
2018-06-22 13:35:25 +02:00
import getPatchmanifest from './ssn/getPatchmanifest';
(async () => {
2018-06-22 13:43:17 +02:00
//----- PATCHMANIFEST -----
2018-07-04 19:25:22 +02:00
//const patchmanifestJson = await getPatchmanifest('assets_swtor_de_de');
//console.log(patchmanifestJson);
2018-07-04 19:25:22 +02:00
//----- PATCH -----
const patch = await getPatch('assets_swtor_de_de', -1, 0);
console.log(patch);
})();