Skip to content

Instantly share code, notes, and snippets.

@kumar-abhishek
Forked from daffl/app.js
Created March 17, 2019 00:10
Show Gist options
  • Save kumar-abhishek/da51dc5cb240a34fa2d407d4632da42a to your computer and use it in GitHub Desktop.
Save kumar-abhishek/da51dc5cb240a34fa2d407d4632da42a to your computer and use it in GitHub Desktop.
Basic service layer
class ChatApplication {
login (username, password) {},
logout (user) {},
joinChatRoom(roomId, user) {}
sendMessage(message, roomId, user) {}
sendPrivateMessage(message, receiverId, user) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment