Gitiles
Code Review
Sign In
source.supwisdom.com
/
common
/
thrift
/
50119f15aa034f5dde7113df112e6694246cfa76
/
.
/
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
}
.