Skip to content

Commit

Permalink
Fix shared modules import path
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejkang committed Aug 22, 2021
1 parent 643d578 commit a793f27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { UseCase } from 'src/shared/core/UseCase';
import { UseCase } from '../../../shared/core/UseCase';
import { CreateDriverLicenseVerificationUseCaseRequest } from './dto/CreateDriverLicenseVerificationUseCaseRequest';
import { CreateDriverLicenseVerificationUseCaseResponse } from './dto/CreateDriverLicenseVerificationUseCaseResponse';
import { Efine } from './api/Efine';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CoreResponse } from 'src/shared/core/CoreResponse';
import { CoreResponse } from '../../../../shared/core/CoreResponse';

export interface CreateDriverLicenseVerificationUseCaseResponse extends CoreResponse {
errorMessage?: string;
Expand Down

0 comments on commit a793f27

Please sign in to comment.