fix: removed unused featcher

This commit is contained in:
Elie Baier 2023-12-20 15:19:00 +01:00
parent 01e87a75d6
commit 03f5321062
1 changed files with 0 additions and 3 deletions

View File

@ -1,3 +0,0 @@
import { stat } from "fs";
export const fetcher = (input: URL | RequestInfo, init?: RequestInit | undefined) => fetch(input, init).then(res => res.json().then(data => ({...data, status: res.status})));