6 lines
172 B
TypeScript
6 lines
172 B
TypeScript
|
import createClient from "openapi-fetch";
|
||
|
import { paths } from './schema.js';
|
||
|
|
||
|
export const fooocos = createClient<paths>({
|
||
|
baseUrl: process.env["FOOOCOS_API_URL"]
|
||
|
});
|