package
0.0.0-20240218211834-b7f01d1e5ec6
Repository: https://github.com/antoniodipinto/ikisocket.git
Documentation: pkg.go.dev
# README
Disclaimer:
This my personal interpretation of a basic chatroom example, with basic API to handle the rooms. Please feel free to add comments or suggestions here
Connect to the websocket
ws://localhost:3000/ws/<user-id>
Message object example
{
"from": "<user-id>",
"to": "<recipient-user-id>",
"data": "hello"
}
# Structs
MessageObject Basic chat message object.