mirror of
https://github.com/wassname/talk.git
synced 2026-07-09 06:07:19 +08:00
17 lines
341 B
JavaScript
17 lines
341 B
JavaScript
import store from './services/store';
|
|
import pym from './services/PymConnection';
|
|
import I18n from './modules/i18n/i18n';
|
|
import actions from './actions';
|
|
import Slot from './components/Slot';
|
|
|
|
// TODO (bc): Deprecate old actions. Spreading actions is now needed.
|
|
|
|
export default {
|
|
pym,
|
|
Slot,
|
|
I18n,
|
|
store,
|
|
actions,
|
|
...actions
|
|
};
|