aboutsummaryrefslogtreecommitdiffstats
path: root/tests/msw/handlers/topics/index.ts
blob: e29694b8a4f56e7c00b0c42536a0631266d51702 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { topicHandler } from './topic.handler';
import { topicsCountHandler } from './topics-count.handler';
import { topicsListHandler } from './topics-list.handler';
import { topicsSlugsHandler } from './topics-slugs.handler';

export const topicsHandlers = [
  topicHandler,
  topicsCountHandler,
  topicsListHandler,
  topicsSlugsHandler,
];