meshtastic/src/utils/swr.ts

2 lines
78 B
TypeScript
Raw Normal View History

2021-12-22 06:42:57 -08:00
export const fetcher = (url: string) => fetch(url).then((res) => res.json());