()
| 1 | import { ApiFetcher } from "botloader-common"; |
| 2 | |
| 3 | export function CreateFetcher(): ApiFetcher { |
| 4 | return { |
| 5 | fetch: async (path, opts) => await window.fetch(path, { |
| 6 | ...opts, |
| 7 | // credentials: "include", |
| 8 | }) |
| 9 | } |
| 10 | } |
no test coverage detected