Files
Frontend/mocks/handler.js
AmirHossein Mahmoodi 7e2c18ca6c CFE-6 Fixed any bugs
2023-10-02 16:09:05 +03:30

10 lines
233 B
JavaScript

import {GET_USER_ROUTE} from "@/core/data/apiRoutes";
import {rest} from "msw";
export const handler = [rest.get(GET_USER_ROUTE, (req, res, ctx) => {
return res(ctx.json({
data: {
id: 10
}
}))
})]