import { type api } from "./hono" import { hc } from "hono/client" export const client = hc('/api', { async fetch(input: RequestInfo | URL, init?: RequestInit): Promise { return await fetch(input, { ...init, credentials: 'include', }) } })