field create

This commit is contained in:
2026-01-08 13:10:18 +02:00
parent 4d2497d96f
commit ebccac210a
15 changed files with 318 additions and 18 deletions
+17
View File
@@ -0,0 +1,17 @@
let app;
let channel;
export function createApp(channelData) {
channel = channelData;
app = {
url: (path) => {
return channel.lucentUrl + "/" + path;
},
};
return app;
}
export function getApp() {
return app;
}