From a4f0b9b83240c93eb3beb6610dfe8eed46c1e08a Mon Sep 17 00:00:00 2001 From: "borja (aider)" Date: Wed, 26 Mar 2025 23:49:28 +0100 Subject: [PATCH] feat: add proper application startup in index.ts --- index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/index.ts b/index.ts index f67b2c6..b9d62af 100644 --- a/index.ts +++ b/index.ts @@ -1 +1,4 @@ -console.log("Hello via Bun!"); \ No newline at end of file +import { WebhookServer } from './src/server'; + +console.log("Starting WhatsApp Task Bot..."); +WebhookServer.start();