mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
21 lines
315 B
TypeScript
21 lines
315 B
TypeScript
|
///<reference path="../../typings/main.d.ts"/>
|
||
|
|
||
|
import {RenderingMWs} from "../middlewares/RenderingMWs";
|
||
|
|
||
|
export class ErrorRouter{
|
||
|
constructor(private app) {
|
||
|
|
||
|
this.addError();
|
||
|
}
|
||
|
|
||
|
private addError() {
|
||
|
this.app.use("/api/*",
|
||
|
RenderingMWs.renderError
|
||
|
);
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|