def okResponse()

in src/main/scala/com/gu/invoicing/common/HttpHelper.scala [28:33]


  def okResponse(resultBody: String): APIGatewayProxyResponseEvent = {
    val response = new APIGatewayProxyResponseEvent()
    response.setStatusCode(200)
    response.setBody(resultBody)
    response
  }