Skip to content

Commit 99f15a6

Browse files
committed
Updates missing imports after rebase
1 parent 9152bda commit 99f15a6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

firebase/src/core/data/gateways/shell-gateway.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import ShellError from "@faults/errors/shell-error";
1+
import ShellError from "#faults/errors/shell-error";
22
import { exec } from "child_process";
33

44
/**

firebase/src/core/data/repositories/git-repository.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ShellGateway } from "@data/gateways/shell-gateway";
1+
import { ShellGateway } from "#data/gateways/shell-gateway";
22

33
/** Interfaces access to the project git repository information. */
44
export class GitRepository {

firebase/src/core/faults/errors/shell-error.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BaseError } from "@faults/fault";
1+
import { BaseError } from "#faults/fault";
22

33
export default class ShellError extends BaseError {
44
constructor(fault: { message: string; origin?: unknown }) {

0 commit comments

Comments
 (0)