aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/services/api-client.ts
blob: c1ee47549a14c49a8cc3363f11cb5444bfd3997e (plain)
1
2
3
4
5
6
import createClient from "openapi-fetch";
import type { paths } from "../api/generated";

export const api = createClient<paths>({
	credentials: "include",
});