Skip to content

Commit 1fc849e

Browse files
chore: auto-fix linting and formatting issues
1 parent 238c941 commit 1fc849e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

apps/server/src/socket/socket.controller.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { Test, TestingModule } from '@nestjs/testing';
2+
23
import { SocketController } from './socket.controller';
34

45
describe('SocketController', () => {

apps/server/src/socket/socket.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import { Module } from '@nestjs/common';
22

3+
import { SocketController } from './socket.controller';
34
import { SocketGateway } from './socket.gateway';
45

56
import { ChatsModule } from '@chats/chats.module';
67
import { SessionTokenValidationGuard } from '@common/guards/session-token-validation.guard';
78
import { SessionTokenModule } from '@common/guards/session-token.module';
89
import { LoggerModule } from '@logger/logger.module';
910
import { PrismaModule } from '@prisma-alias/prisma.module';
10-
import { SocketController } from './socket.controller';
1111

1212
@Module({
1313
imports: [PrismaModule, ChatsModule, SessionTokenModule, LoggerModule],

0 commit comments

Comments
 (0)