Skip to content

Commit

Permalink
fix: src -> relation path
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyun-git committed Jun 29, 2024
1 parent a5a295a commit eb9d600
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/controller/meme.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import CustomError from '../errors/CustomError';
import { HttpCode } from '../errors/HttpCode';
import { CustomRequest } from '../middleware/requestedInfo';
import { IMemeCreatePayload, IMemeUpdatePayload } from '../model/meme';
import { InteractionType } from 'src/model/memeInteraction';
import { InteractionType } from '../model/memeInteraction';
import * as MemeService from '../service/meme.service';
import * as UserService from '../service/user.service';
import { logger } from '../util/logger';
Expand Down
2 changes: 1 addition & 1 deletion src/controller/user.controller.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { NextFunction, Request, Response } from 'express';
import _ from 'lodash';
import { CustomRequest } from 'src/middleware/requestedInfo';
import { CustomRequest } from '../middleware/requestedInfo';

import CustomError from '../errors/CustomError';
import { HttpCode } from '../errors/HttpCode';
Expand Down
2 changes: 1 addition & 1 deletion src/service/meme.service.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import _ from 'lodash';
import { Types } from 'mongoose';
import { IKeywordDocument } from 'src/model/keyword';
import { IKeywordDocument } from '../model/keyword';

import CustomError from '../errors/CustomError';
import { HttpCode } from '../errors/HttpCode';
Expand Down

0 comments on commit eb9d600

Please sign in to comment.