org.http4k.serverless.AwsHttpAdapter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-serverless-lambda Show documentation
Show all versions of http4k-serverless-lambda Show documentation
Http4k Serverless support for AWS Lambda
package org.http4k.serverless
import org.http4k.core.Request
import org.http4k.core.Response
internal interface AwsHttpAdapter {
operator fun invoke(req: Req): Request
operator fun invoke(req: Response): Resp
}