mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 04:43:02 +08:00
13 lines
248 B
JavaScript
13 lines
248 B
JavaScript
import pym from './services/PymConnection';
|
|
import I18n from './modules/i18n/i18n';
|
|
import actions from './actions';
|
|
|
|
// TODO (bc): Deprecate old actions. Spreading actions is now needed.
|
|
|
|
export default {
|
|
pym,
|
|
I18n,
|
|
actions,
|
|
...actions
|
|
};
|