blob: 85a2300a66576dd4ff911b28ce649349a5c55cf2 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | import { commentsHandlers } from './comments';
import { postsHandlers } from './posts';
import { thematicsHandlers } from './thematics';
import { topicsHandlers } from './topics';
export const handlers = [
  ...commentsHandlers,
  ...postsHandlers,
  ...thematicsHandlers,
  ...topicsHandlers,
];
 |