removed dead code

This commit is contained in:
2023-06-23 11:02:08 +02:00
parent 2ae4a5da3d
commit e9df173aef
3 changed files with 0 additions and 19 deletions

View File

@@ -1,11 +1,3 @@
import * as E from 'fp-ts/Either'
import { pipe } from 'fp-ts/function'
type FetchInit = {
url: string,
opt?: RequestInit
}
export async function ffetch<T>(
url: string,
onSuccess: (res: T) => void,