Skip to content

Commit

Permalink
fix : fix the import
Browse files Browse the repository at this point in the history
  • Loading branch information
KNU-K committed Nov 23, 2024
1 parent 57db43e commit 433238c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/modules/chat/application/dto/chat-response.dto.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { UserSimple } from '@user/types/user.type';
import { UserSimple } from '@user/domain/types/user.type';
import { ChatroomWithCount, ChatroomWithParticipants } from '@chat/domain/types/chat.type';

export class ChatroomDetailResponse {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/chat/domain/repository/chat.repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { InjectModel } from '@nestjs/mongoose';
import { InjectRepository } from '@nestjs/typeorm';
import { ChatParticipants } from '@chat/domain/entities/chat-participants.entity';
import { ChatroomWithCount, ChatroomWithParticipants } from '@chat/domain/types/chat.type';
import { UserSimple } from '@user/types/user.type';
import { UserSimple } from '@user/domain/types/user.type';
import { CreateChatDTO } from '@chat/application/dto/chat-request.dto';

export class ChatRepository {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/chat/domain/types/chat.type.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { UserSimple } from '@user/types/user.type';
import { UserSimple } from '@user/domain/types/user.type';
export type Chatroom = {
id: number;
name: string;
Expand Down

0 comments on commit 433238c

Please sign in to comment.