From 9b3a76c0440a468f683c8978209117ea082ad788 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 16 Dec 2022 08:46:38 -0500 Subject: [PATCH] Rename file Signed-off-by: Sebastian Malton --- .../{unsafe-fetch.injectable.ts => fetch-module.injectable.ts} | 0 src/common/fetch/fetch.injectable.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/common/fetch/{unsafe-fetch.injectable.ts => fetch-module.injectable.ts} (100%) diff --git a/src/common/fetch/unsafe-fetch.injectable.ts b/src/common/fetch/fetch-module.injectable.ts similarity index 100% rename from src/common/fetch/unsafe-fetch.injectable.ts rename to src/common/fetch/fetch-module.injectable.ts diff --git a/src/common/fetch/fetch.injectable.ts b/src/common/fetch/fetch.injectable.ts index ad825d3f6d..d4f51efe0d 100644 --- a/src/common/fetch/fetch.injectable.ts +++ b/src/common/fetch/fetch.injectable.ts @@ -4,7 +4,7 @@ */ import { getInjectable } from "@ogre-tools/injectable"; import type { RequestInit, Response } from "node-fetch"; -import nodeFetchModuleInjectable from "./unsafe-fetch.injectable"; +import nodeFetchModuleInjectable from "./fetch-module.injectable"; export type Fetch = (url: string, init?: RequestInit) => Promise;