EZPPLauncher/tests/osuUpdate.js

8 lines
187 B
JavaScript

const { getUpdateFiles } = require("../src/util/osuUtil");
(async () => {
const osuPath = "";
const latestFiles = await getUpdateFiles("stable40");
console.log(latestFiles);
})();