ca63dd4
1
2
3
4
5
6
7
8
9
10
import { Middleware } from 'koa'; export const errorMiddleware: Middleware = async (ctx, next) => { try { await next(); } catch (error) { ctx.status = 500; ctx.body = { error: error }; } };