added messages list, new client form, logic for client Apps plus others

This commit is contained in:
Kwesi Banson Jnr
2026-03-22 22:29:28 +00:00
parent c68c007945
commit 4ab0fda326
858 changed files with 242393 additions and 337 deletions

View File

@@ -0,0 +1,9 @@
import { createRequire } from 'node:module';
const require = createRequire(import.meta.url);
import Bundler from "./Bundler.mjs";
const pkg = require("../package.json");
var bundler = new Bundler(pkg.version, process.env.TARGET);
export default bundler.bundle();