mirror of
https://github.com/wassname/talk.git
synced 2026-08-07 11:29:44 +08:00
12 lines
295 B
JavaScript
12 lines
295 B
JavaScript
import * as authActions from './auth';
|
|
import * as assetActions from './asset';
|
|
import * as notificationActions from './notification';
|
|
import {actionsImporter} from '../helpers/plugins';
|
|
|
|
export default {
|
|
authActions,
|
|
assetActions,
|
|
notificationActions,
|
|
pluginActions: actionsImporter
|
|
};
|