Skip to content

Instantly share code, notes, and snippets.

@vaibhavgoyal09
Created November 19, 2021 12:16
Show Gist options
  • Select an option

  • Save vaibhavgoyal09/677edd74761e591d2c428c82fed1b4e9 to your computer and use it in GitHub Desktop.

Select an option

Save vaibhavgoyal09/677edd74761e591d2c428c82fed1b4e9 to your computer and use it in GitHub Desktop.
fun Route.gameSocketRoute() {
route("/v1/game") {
try {
webSocket {
}
} catch (e: Exception) {
e.printStackTrace()
} finally {
// Handle Socket disconnect
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment