Skip to content

Commit

Permalink
[example] Fix require path
Browse files Browse the repository at this point in the history
  • Loading branch information
lpinca committed Apr 15, 2022
1 parent 2cf6202 commit d062ded
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/express-session-parse/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const express = require('express');
const http = require('http');
const uuid = require('uuid');

const { WebSocketServer } = require('..');
const { WebSocketServer } = require('../..');

const app = express();
const map = new Map();
Expand Down
2 changes: 1 addition & 1 deletion examples/server-stats/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const express = require('express');
const path = require('path');
const { createServer } = require('http');

const { WebSocketServer } = require('..');
const { WebSocketServer } = require('../..');

const app = express();
app.use(express.static(path.join(__dirname, '/public')));
Expand Down

0 comments on commit d062ded

Please sign in to comment.