Skip to content

Instantly share code, notes, and snippets.

@jef-sure
Created August 27, 2016 08:05
Show Gist options
  • Save jef-sure/2e6841cf8c13c09bec6752950de460e2 to your computer and use it in GitHub Desktop.
Save jef-sure/2e6841cf8c13c09bec6752950de460e2 to your computer and use it in GitHub Desktop.
WSTest::WebSocket::Echo
package WSTest::WebSocket::Echo;
sub on_message {
my ($self, $message) = @_;
$self->send($message);
}
1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment