From b06d4ff767d6f055fe38869bdb2554edced9a04f Mon Sep 17 00:00:00 2001 From: Andrea Date: Fri, 5 Sep 2025 08:15:39 +0200 Subject: [PATCH] chore: update \`index.ts\` file --- src/index.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 2a5e4b8..d51b97f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1 +1,5 @@ -console.log("Hello via Bun!"); +async function main() {} + +if (import.meta.main) { + await main(); +}