remove some empty lines

This commit is contained in:
Daniel Brahneborg 2019-08-12 18:45:17 +02:00
parent 02a2e37dcd
commit 07e1c76246

View file

@ -1,10 +1,7 @@
const express = require('express') const express = require('express')
const app = express() const app = express()
const path = require('path')
app.use(express.json()); app.use(express.json());
app.use('/plugin', require('./plugin')) app.use('/plugin', require('./plugin'))
// catch 404 and forward to error handler // catch 404 and forward to error handler
@ -12,4 +9,3 @@ const createError = require('http-errors')
app.use(function(req, res, next) { next(createError(404)) }) app.use(function(req, res, next) { next(createError(404)) })
module.exports = app module.exports = app