EZPPLauncher/tests/osuUpdate.js

8 lines
187 B
JavaScript
Raw Normal View History

2024-01-12 15:10:19 +00:00
const { getUpdateFiles } = require("../src/util/osuUtil");
(async () => {
const osuPath = "";
const latestFiles = await getUpdateFiles("stable40");
console.log(latestFiles);
})();