Skip to content
This repository was archived by the owner on Jun 3, 2020. It is now read-only.

Commit c9ac695

Browse files
committed
Fix: use promises not async for peersocket manifest
1 parent 446a840 commit c9ac695

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module.exports = {
2-
joinLobby: 'async',
3-
leaveLobby: 'async',
2+
joinLobby: 'promise',
3+
leaveLobby: 'promise',
44
getActiveSocketsInLobby: 'sync',
5-
setLobbySessionData: 'async',
5+
setLobbySessionData: 'promise',
66
createLobbyEventStream: 'readable',
77

8-
socketSend: 'async',
8+
socketSend: 'promise',
99
createSocketEventStream: 'readable'
1010
}

0 commit comments

Comments
 (0)