mirror of
https://github.com/wassname/talk.git
synced 2026-08-12 12:30:39 +08:00
12 lines
200 B
JavaScript
12 lines
200 B
JavaScript
import auth from './auth';
|
|
import user from './user';
|
|
import asset from './asset';
|
|
import {pluginReducers} from '../helpers/plugins';
|
|
|
|
export default {
|
|
auth,
|
|
user,
|
|
asset,
|
|
...pluginReducers
|
|
};
|