frontend / 6.0.2 /client /src /test /server.ts
gradio-pr-bot's picture
Upload folder using huggingface_hub
df88499 verified
raw
history blame
159 Bytes
import { setupServer } from "msw/node";
import { handlers } from "./handlers";
export function initialise_server(): any {
return setupServer(...handlers);
}