Skip to content

Commit

Permalink
disabling routes (diagnostic)
Browse files Browse the repository at this point in the history
  • Loading branch information
litsel-pitdyr committed Jan 3, 2025
1 parent df6579f commit e8dc1f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
require('dotenv').config();
const express = require('express');
const app = express();
const routes = require('./routes.js');
// const routes = require('./routes.js');
const http = require('http');
const WebSocket = require('ws');

app.use(routes);
// app.use(routes);
/**
* Delayed WebSocket Proxy:
* The handshake with the client won't complete until we confirm
Expand Down

0 comments on commit e8dc1f1

Please sign in to comment.