blob: 0637320f70cb746399b037c31f3c16bd4398485d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import {
expandAuthorHook,
expandAuthorManyHook
} from '../../hooks/expandAuthor';
export default {
after: {
get: [expandAuthorHook],
find: [expandAuthorManyHook]
}
};
|