Gitiles
Code Review
Sign In
gerrit.mcp.mirantis.com
/
packaging
/
sources
/
thrift
/
0ee93eaa464d524efcfda4f243d2c456a4dfac5e
/
.
/
lib
/
erl
/
src
/
test_handler.erl
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
}
.