mirror of
https://github.com/wassname/talk.git
synced 2026-07-08 05:07:16 +08:00
14 lines
283 B
JavaScript
14 lines
283 B
JavaScript
import auth from './auth';
|
|
import user from './user';
|
|
import asset from './asset';
|
|
import {reducer as commentBox} from '../../coral-plugin-commentbox';
|
|
import {pluginReducers} from '../helpers/plugins';
|
|
|
|
export default {
|
|
auth,
|
|
user,
|
|
asset,
|
|
commentBox,
|
|
...pluginReducers
|
|
};
|