12 lines
349 B
TypeScript
12 lines
349 B
TypeScript
import getManifest from './ssn/getManifest';
|
|
import getPatch from './ssn/getPatch';
|
|
|
|
(async () => {
|
|
//----- PATCHMANIFEST -----
|
|
//const patchmanifestJson = await getManifest('assets_swtor_de_de');
|
|
//console.log(patchmanifestJson);
|
|
|
|
//----- PATCH -----
|
|
const patch = await getPatch('assets_swtor_de_de', -1, 0);
|
|
console.log(patch);
|
|
})();
|