ssn/src/installPatch.ts

13 lines
349 B
TypeScript
Raw Normal View History

import getManifest from './ssn/getManifest';
import getPatch from './ssn/getPatch';
(async () => {
2018-06-22 13:43:17 +02:00
//----- PATCHMANIFEST -----
//const patchmanifestJson = await getManifest('assets_swtor_de_de');
2018-07-04 19:25:22 +02:00
//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);
})();