1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/src/server.ts

10 lines
172 B
TypeScript
Raw Normal View History

import { start } from './lib/server-impl';
2021-05-11 12:29:28 +02:00
try {
start();
} catch (error) {
// eslint-disable-next-line no-console
console.error(error);
process.exit();
}