8 lines
135 B
TypeScript
8 lines
135 B
TypeScript
|
import type { Handler } from 'hono'
|
||
|
|
||
|
export const trpcAdapter = (): Handler => {
|
||
|
return async (_c, next) => {
|
||
|
await next()
|
||
|
}
|
||
|
}
|