Skip to content

Commit

Permalink
fix(backup): follow upstream dir apth
Browse files Browse the repository at this point in the history
  • Loading branch information
wibus-wee committed Aug 12, 2022
1 parent 78452b1 commit f388d50
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/modules/backup/backup.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
* @author: Wibus
* @Date: 2022-08-11 18:20:13
* @LastEditors: Wibus
* @LastEditTime: 2022-08-12 15:29:15
* @LastEditTime: 2022-08-12 18:33:08
* Coding With IU
*/

import { CommentType } from "~/modules/comment/comment.model";
import { CommentType } from "../comments/comments.model";

/**
Expand Down
2 changes: 1 addition & 1 deletion src/modules/backup/backup.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { UserModule } from "../user/user.module";
import { CategoryModule } from "../category/category.module";
import { PostModule } from "../post/post.module";
import { PageModule } from "../page/page.module";
import { CommentModule } from "~/modules/comment/comment.module";
import { CommentModule } from "../comments/comments.module";

@Module({
imports: [UserModule, CategoryModule, PostModule, PageModule, CommentModule],
Expand Down
2 changes: 1 addition & 1 deletion src/modules/backup/backup.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { UserDocument } from "../user/user.model";
import { CategoryService } from "../category/category.service";
import { PostService } from "../post/post.service";
import { PageService } from "../page/page.service";
import { CommentService } from "~/modules/comment/comment.service";
import { CommentService } from "../comments/comments.service";
import { BackupInterface } from "./backup.interface";
@Injectable()
export class BackupService {
Expand Down

0 comments on commit f388d50

Please sign in to comment.