Shame on me

This commit is contained in:
Zef Hemel
2023-08-21 14:11:42 +02:00
parent 1ff29ac2af
commit 688985c133
+1 -1
View File
@@ -108,6 +108,6 @@ To allow outside connections, pass -L 0.0.0.0 as a flag, and put a TLS terminato
await httpServer.start(); await httpServer.start();
// Wait in an infinite loop (to keep the HTTP server running, only cancelable via Ctrl+C or other signal) // Wait in an infinite loop (to keep the HTTP server running, only cancelable via Ctrl+C or other signal)
while (true) { while (true) {
sleep(1000); await sleep(1000);
} }
} }