Skip to content

Commit

Permalink
fix build break for uwebsockets
Browse files Browse the repository at this point in the history
  • Loading branch information
jim-king-2000 committed Jul 24, 2023
1 parent 4ee4dc5 commit 6e21d3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions javascript/uwebsockets/app.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { App } from 'uWebSockets.js';
import uWS from "uWebSockets.js";

// Create a new instance of HyperExpress HTTP
const port = 3000;
const app = new App();
const app = uWS.App();

// GET "/" => 200 with empty body
app.get("/", (res, req) => {
Expand Down

0 comments on commit 6e21d3c

Please sign in to comment.