fix(core): update

This commit is contained in:
2024-04-14 03:38:00 +02:00
parent eecc510a49
commit 6d14056cfd
16 changed files with 267 additions and 196 deletions

View File

@@ -1,3 +1,14 @@
import * as plugins from './remoteingress.plugins.js';
import * as plugins from './plugins.js';
export let demoExport = 'Hi there! :) This is an exported string';
import { ConnectorPublic } from './connector.public.js';
import { ConnectorPrivate } from './connector.private.js';
export {
ConnectorPublic,
ConnectorPrivate
}
export const runCli = async () => {
const qenv = new plugins.qenv.Qenv();
const mode = await qenv.getEnvVarOnDemand('MODE');
}