2018-06-22 13:35:25 +02:00
|
|
|
import getPatchmanifest from './ssn/getPatchmanifest';
|
2018-06-21 23:06:34 +02:00
|
|
|
import getSolidpkg from './ssn/getSolidpkg';
|
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 -----
|
|
|
|
//.patchmanifest files contain a single XML file called "manifest.xml"
|
2018-06-22 17:19:30 +02:00
|
|
|
//const patchmanifestXml = await getPatchmanifest('assets_swtor_de_de');
|
|
|
|
//console.log(patchmanifestXml);
|
2018-06-22 15:56:51 +02:00
|
|
|
|
2018-06-22 13:43:17 +02:00
|
|
|
//----- SOLIDPKG -----
|
|
|
|
//.solidpkg files contain a single Bencode file called "metafile.solid"
|
2018-06-22 16:14:40 +02:00
|
|
|
const solidFile = await getSolidpkg('assets_swtor_de_de', -1, 0);
|
2018-06-22 17:38:53 +02:00
|
|
|
console.log(solidFile);
|
2018-06-21 21:26:29 +02:00
|
|
|
})();
|