0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-15 12:40:25 +00:00

Rename handler modules to _h

This commit is contained in:
Herman Singh 2018-09-07 13:48:43 -04:00 committed by Loïc Hoguin
parent 8045f7a998
commit 86cb105679
No known key found for this signature in database
GPG key ID: 8A9DF795F6FED764
28 changed files with 28 additions and 28 deletions

View file

@ -1,24 +0,0 @@
-module(ws_handler).
-export([init/2]).
-export([websocket_init/1]).
-export([websocket_handle/2]).
-export([websocket_info/2]).
init(Req, Opts) ->
{cowboy_websocket, Req, Opts}.
websocket_init(State) ->
erlang:start_timer(1000, self(), <<"Hello!">>),
{ok, State}.
websocket_handle({text, Msg}, State) ->
{reply, {text, << "That's what she said! ", Msg/binary >>}, State};
websocket_handle(_Data, State) ->
{ok, State}.
websocket_info({timeout, _Ref, Msg}, State) ->
erlang:start_timer(1000, self(), <<"How' you doin'?">>),
{reply, {text, Msg}, State};
websocket_info(_Info, State) ->
{ok, State}.