Files
lucent-laravel/front/js/app.js
T

18 lines
238 B
JavaScript
Raw Normal View History

2026-01-08 13:10:18 +02:00
let app;
let channel;
export function createApp(channelData) {
channel = channelData;
app = {
url: (path) => {
return channel.lucentUrl + "/" + path;
},
};
return app;
}
export function getApp() {
return app;
}