honojs-middleware/deno_dist/index.ts

9 lines
265 B
TypeScript
Raw Normal View History

2022-08-04 07:54:30 +08:00
import type { Handler } from 'https://raw.githubusercontent.com/honojs/hono/v2.0.6/deno_dist/mod.ts'
export const hello = (message: string = 'Hello'): Handler => {
return async (c, next) => {
await next()
c.res.headers.append('X-Message', message)
}
}