blob: 3a49e134ef00d02cbb5d528460b01c5455bf3344 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import { lastPostCursorHandler } from './last-post-cursor.handler';
import { postHandler } from './post.handler';
import { postsCountHandler } from './posts-count.handler';
import { postsListHandler } from './posts-list.handler';
import { postsSlugsHandler } from './posts-slugs.handler';
import { recentPostsHandler } from './recent-posts.handler';
export const postsHandlers = [
lastPostCursorHandler,
postHandler,
postsCountHandler,
postsListHandler,
postsSlugsHandler,
recentPostsHandler,
];
|