
{ABComm} = require '../src/appborg'


comm = new ABComm


comm.on 'ping', ({msg}, callback) ->
  callback null, {msg2: "OH " + msg}


comm.on 'sample-exception', () ->
  throw new Error "Sample Exception"

