actual/packages/loot-core/src/server/main-app.js
Tom French dc53a74459
Separate external, monorepo and internal imports (#237)
* style: enforce ordering of imports

* style: sort imports in loot-core

* style: sort imports in desktop-client

* style: sort imports in loot-design

* style: manual fixes
2022-09-02 12:43:37 +01:00

12 lines
232 B
JavaScript

import { createApp } from './app';
const connection = require('../platform/server/connection');
// Main app
const app = createApp();
app.events.on('sync', info => {
connection.send('sync-event', info);
});
export default app;