Skip to content

Commit

Permalink
build: add file
Browse files Browse the repository at this point in the history
  • Loading branch information
ccamensuli committed Jan 27, 2024
1 parent 27c172e commit 5dbcf5c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/nodefony/src/bin/nodefony.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env node
import { CliKernel } from "nodefony";
import { exit } from "process";

const kernel = new CliKernel().start().catch((e) => {
exit(e.code || 1);
});
export default kernel;

0 comments on commit 5dbcf5c

Please sign in to comment.