import { Context } from 'koa'; import { ErrorCode } from '../common/types/error-code'; export const die = (ctx: Context, error: ErrorCode = 'other', status = 400): Promise => { ctx.status = status; return ctx.render('frontend', { error }); };