From d594c53e50806b3a8a11cfc36b454ad48d552a10 Mon Sep 17 00:00:00 2001 From: mrkubax10 Date: Wed, 13 Sep 2023 22:10:14 +0200 Subject: [PATCH] Run frontend at main thread --- main.pl | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/main.pl b/main.pl index de1b5c7..7c366fe 100644 --- a/main.pl +++ b/main.pl @@ -17,10 +17,7 @@ use lib "."; use frontend; -use threads; - use strict; use warnings; -my $frontendThread = threads->create("frontend::httpServerWorker"); -$frontendThread->join(); +frontend::httpServerWorker();