exports.placeOrder = function()

in server/accounting.js [5:9]


exports.placeOrder = function (order, cb) {
  request.post('http://example.com/opbeans', order, function (err, res, body) {
    cb(err, body)
  })
}