Files
app/ts/reception/index.ts
T
2024-09-29 13:56:38 +02:00

16 lines
340 B
TypeScript

// general exports for testing
export * from './classes.reception.js';
// running it in production
import { Reception } from './classes.reception.js';
let reception: Reception;
export const runCli = async () => {
reception = new Reception();
await reception.start();
};
export const stop = async () => {
await reception.stop();
};