dependabot[bot] on npm_and_yarn
Bump elliptic from 6.4.0 to 6.5… (compare)
dependabot[bot] on npm_and_yarn
Bump minimist from 1.2.0 to 1.2… (compare)
import {HTTPContext} from '../../http-context-driver'
function FrontPage ({HTTP}) {
return {
HTTP: HTTP.map((ctx: HTTPContext) => {
const outgoing: HTTPContext = {
request: ctx.request,
response: ctx.response,
body: 'FrontPage'
}
return outgoing
})
}
}
export default FrontPage