2018-07-05 00:58:40 +02:00
|
|
|
import getManifest from './ssn/getManifest';
|
2018-07-04 19:25:22 +02:00
|
|
|
import getPatch from './ssn/getPatch';
|
2018-06-22 15:56:51 +02:00
|
|
|
|
2018-06-21 21:26:29 +02:00
|
|
|
(async () => {
|
2018-06-22 13:43:17 +02:00
|
|
|
//----- PATCHMANIFEST -----
|
2018-07-05 00:58:40 +02:00
|
|
|
//const patchmanifestJson = await getManifest('assets_swtor_de_de');
|
2018-07-04 19:25:22 +02:00
|
|
|
//console.log(patchmanifestJson);
|
2018-06-22 15:56:51 +02:00
|
|
|
|
2018-07-04 19:25:22 +02:00
|
|
|
//----- PATCH -----
|
|
|
|
const patch = await getPatch('assets_swtor_de_de', -1, 0);
|
|
|
|
console.log(patch);
|
2018-06-21 21:26:29 +02:00
|
|
|
})();
|