Gitiles
Code Review
Sign In
gerrit.mcp.mirantis.com
/
packaging
/
sources
/
thrift
/
f0377e2ffeb9b260a809f5d2c8ffef73b77755ec
/
.
/
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
}
.