Skip to content

Commit

Permalink
#17 prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Peyton-McKee committed Sep 13, 2023
1 parent 2f7a0af commit 43f292b
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions scylla-server/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import express, { Request, Response } from "express";
import { PrismaClient } from "@prisma/client";
import { Server } from "socket.io";
import ProxyController from "./proxy/proxy-controller";
import { WebSocket } from "ws";
import { Message } from "./utils/message.utils";
import express, { Request, Response } from 'express';
import { PrismaClient } from '@prisma/client';
import { Server } from 'socket.io';
import ProxyController from './proxy/proxy-controller';
import { WebSocket } from 'ws';
import { Message } from './utils/message.utils';

const app = express();
const port = 8000;
Expand Down Expand Up @@ -56,4 +56,3 @@ socketClient.on('open', () => {
socketClient.on('close', () => {
console.log('disconnected from Siren');
});

0 comments on commit 43f292b

Please sign in to comment.