summaryrefslogtreecommitdiff
path: root/src/pbx_status.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/pbx_status.erl')
-rw-r--r--src/pbx_status.erl5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/pbx_status.erl b/src/pbx_status.erl
index 67e4766..74a60af 100644
--- a/src/pbx_status.erl
+++ b/src/pbx_status.erl
@@ -1,12 +1,11 @@
-module(pbx_status).
--export([decode/1, encode/0]).
+-export([decode/1, encode/0, value/1]).
-include("CSTA-system-status.hrl").
decode(Data) ->
- Status = 'CSTA-system-status':decode('SystemStatusArg', Data),
- value(Status).
+ 'CSTA-system-status':decode('SystemStatusArg', Data).
encode() ->
'CSTA-system-status':encode('SystemStatusRes', {noData, []}).