blob: a0aa2a558375f97444bd0557385af7a4071beef4 [file] [log] [blame]
-module(test_handler).
-export([handle_function/2]).
handle_function(add, Params = {A, B}) ->
io:format("Got params: ~p~n", [Params]),
{reply, A + B}.