summaryrefslogtreecommitdiff
path: root/examples/ws.ts
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ws.ts')
-rw-r--r--examples/ws.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ws.ts b/examples/ws.ts
index 83e890bc0..f5965b7eb 100644
--- a/examples/ws.ts
+++ b/examples/ws.ts
@@ -10,7 +10,7 @@ async function main(): Promise<void> {
console.log("websocket server is running on 0.0.0.0:8080");
for await (const req of serve("0.0.0.0:8080")) {
if (req.url === "/ws") {
- (async () => {
+ (async (): Promise<void> => {
const sock = await acceptWebSocket(req);
console.log("socket connected!");
for await (const ev of sock.receive()) {