Skip to content

Commit

Permalink
refactor(sk): use path alias instead of ../
Browse files Browse the repository at this point in the history
  • Loading branch information
Gi-jutsu committed Nov 24, 2024
1 parent 916d87f commit 809b654
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { Inject, Injectable } from "@nestjs/common";
import { OutboxMessage } from "@shared-kernel/domain/outbox-message/aggregate-root.js";
import type { OutboxMessageRepository } from "@shared-kernel/domain/outbox-message/repository.js";
import { and, gte, isNull } from "drizzle-orm";
import { DateTime } from "luxon";
import { DrizzlePostgresPoolToken } from "../database/drizzle/constants.js";
import { DrizzlePostgresPoolToken } from "@shared-kernel/infrastructure/database/drizzle/constants.js";
import {
outboxMessageSchema,
SharedKernelDatabase,
} from "../database/drizzle/schema.js";
type SharedKernelDatabase,
} from "@shared-kernel/infrastructure/database/drizzle/schema.js";
import { and, gte, isNull } from "drizzle-orm";
import { DateTime } from "luxon";

@Injectable()
export class DrizzleOutboxMessageRepository implements OutboxMessageRepository {
Expand Down

0 comments on commit 809b654

Please sign in to comment.