Files
habitica/website/src/middlewares/api-v3/index.js
2015-11-04 21:19:58 -06:00

9 lines
238 B
JavaScript

// This module is only used to attach middlewares to the express app
import errorHandler from './errorHandler';
export default function middleware (app) {
// Error handler middleware, define as the last one
app.use(errorHandler);
}