Config model and controllers

This commit is contained in:
unknown
2021-05-15 18:33:59 +02:00
parent 873faa6c97
commit 3fc3d07598
5 changed files with 144 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ app.use(express.json());
// Link controllers with routes
app.use('/api/apps', require('./routes/apps'));
app.use('/api/config', require('./routes/config'));
// Custom error handler
app.use(errorHandler);