Launcher/app/assets/js/distromanager.js
grib406413 705b2576b8 add gl
2024-04-23 10:03:13 +02:00

17 lines
565 B
JavaScript

const { DistributionAPI } = require('helios-core/common')
const ConfigManager = require('./configmanager')
// Old Graschatium url.
// exports.REMOTE_DISTRO_URL = 'https://graschatiumdistro.000webhostapp.com/distribution.json'
exports.REMOTE_DISTRO_URL = 'https://graschatiumdistro.000webhostapp.com/distribution.json'
const api = new DistributionAPI(
ConfigManager.getLauncherDirectory(),
null, // Injected forcefully by the preloader.
null, // Injected forcefully by the preloader.
exports.REMOTE_DISTRO_URL,
false
)
exports.DistroAPI = api