UNPKG

@kubb/plugin-msw

Version:

Mock Service Worker (MSW) handlers generator plugin for Kubb, creating API mocks from OpenAPI specifications for frontend development and testing.

8 lines (6 loc) 216 B
/** * Generated by Kubb (https://kubb.dev/). * Do not edit manually. */ import { listPets, createPets, showPetById } from './findByTags' export const handlers = [listPets(), createPets(), showPetById()] as const