0
0
mirror of https://github.com/honojs/hono.git synced 2024-12-01 10:51:01 +00:00
hono/deno_dist/middleware/powered-by/index.ts

9 lines
208 B
TypeScript
Raw Normal View History

import type { MiddlewareHandler } from '../../types.ts'
2022-07-02 06:09:45 +00:00
export const poweredBy = (): MiddlewareHandler => {
return async (c, next) => {
2022-07-02 06:09:45 +00:00
await next()
c.res.headers.set('X-Powered-By', 'Hono')
2022-07-02 06:09:45 +00:00
}
}