1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-18 19:19:36 +02:00

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);