summaryrefslogtreecommitdiff
path: root/app/client/socket/index.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-26 23:15:09 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-26 23:15:09 +0200
commit9be9249f7168e1799b1c6689da44d1efb15667ae (patch)
treecc428236256f35f559b767b5eeca9953fd483d2f /app/client/socket/index.js
parentbe3b2bd56550b71a2ffb7eb1604c1b8c1d2dd4a2 (diff)
modularize... circular dependencies... whatever
Diffstat (limited to 'app/client/socket/index.js')
-rw-r--r--app/client/socket/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/client/socket/index.js b/app/client/socket/index.js
index c0fed61..1430ac9 100644
--- a/app/client/socket/index.js
+++ b/app/client/socket/index.js
@@ -4,11 +4,13 @@ import types from '../types'
import { socket } from './socket.connection'
import * as system from './socket.system'
import * as live from './socket.live'
+import * as task from './socket.task'
export default {
socket,
system,
live,
+ task,
}
socket.on('status', (data) => {