DEFRA/ivory-front-office

View on GitHub
index.js

Summary

Maintainability
A
0 mins
Test Coverage
const createServer = require('./server')

createServer()
  .then(server => server.start())
  .catch(err => {
    console.log(err)
    process.exit(1)
  })