| 2 | import { NextFunction } from '@linen/types'; |
| 3 | |
| 4 | export class BaseController { |
| 5 | static async notImplemented(_: any, _2: any, next: NextFunction) { |
| 6 | next(new NotImplemented()); |
| 7 | } |
nothing calls this directly
no outgoing calls
no test coverage detected