mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 23:27:26 +01:00
9 lines
238 B
JavaScript
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);
|
|
}
|