mirror of
https://github.com/wassname/talk.git
synced 2026-07-12 03:35:38 +08:00
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
import pym from './services/PymConnection';
|
|
import actions from './actions';
|
|
import {loadTranslations} from '../coral-framework/services/i18n';
|
|
|
|
// TODO (bc): Deprecate old actions. Spreading actions is now needed.
|
|
|
|
loadTranslations();
|
|
|
|
export default {
|
|
pym,
|
|
actions,
|
|
...actions
|
|
};
|