mirror of
https://github.com/wassname/talk.git
synced 2026-07-31 12:50:48 +08:00
14 lines
298 B
JavaScript
14 lines
298 B
JavaScript
import pym from './services/PymConnection';
|
|
import actions from './actions';
|
|
import {loadTranslations} from '../coral-i18n/services/i18n';
|
|
|
|
// TODO (bc): Deprecate old actions. Spreading actions is now needed.
|
|
|
|
Promise.all([loadTranslations()]);
|
|
|
|
export default {
|
|
pym,
|
|
actions,
|
|
...actions
|
|
};
|