import {IChassisContext, IChassisPlugin } from "../index"; /** * plugin has injects middleware 'after' every response is generated * * @param context * @param options * @returns {exports} */ export default class logging implements IChassisPlugin { name = "logging"; title = "Setup logging"; install(_context: IChassisContext, _options: any) { // just a placeholder for global options // Chassis does all the work } }