honojs-middleware/src/index.ts

8 lines
128 B
TypeScript
Raw Normal View History

2022-08-04 07:54:30 +08:00
import type { Handler } from 'hono'
2022-08-04 06:00:44 +08:00
export const hello = (): Handler => {
2022-08-04 07:54:30 +08:00
return async (c, next) => {
await next()
}
}