Skip to content

Commit

Permalink
Merge pull request #263 from 42Blank/fix/seperate-code
Browse files Browse the repository at this point in the history
fix: interface 분리
  • Loading branch information
ft-jasong authored Jul 12, 2023
2 parents e62750e + 550fb54 commit e36036e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 4 additions & 0 deletions backend/src/common/database/model/game-match-queue.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export interface GameMatchQueue {
socketId: string;
userId: number;
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
import { Injectable, Logger } from '@nestjs/common';

interface GameMatchQueue {
socketId: string;
userId: number;
}
import { GameMatchQueue } from '../model/game-match-queue';

@Injectable()
export class GameMatchQueueRepository {
Expand Down

1 comment on commit e36036e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy completed!

Please sign in to comment.