Alex Styl
val contentLength = call.request.headers["Content-Length"]?.toLong() if (contentLength == null) { call.respond(HttpStatusCode.LengthRequired) } else if (contentLength > MAX_SIZE) { call.respond(HttpStatusCode.PayloadTooLarge) }
A modern programming language that makes developers happier.