mirror of
https://github.com/fluencelabs/examples
synced 2025-04-24 18:22:15 +00:00
9 lines
159 B
TypeScript
9 lines
159 B
TypeScript
import { main } from './main';
|
|
|
|
main()
|
|
.then(() => process.exit(0))
|
|
.catch((error) => {
|
|
console.error(error);
|
|
process.exit(1);
|
|
});
|