Skip to content
Snippets Groups Projects
startServer.js 156 B
Newer Older
const { startServer } = require('../src')

const init = async () => {
  try {
    return startServer()
  } catch (e) {
    throw new Error(e)
  }
}

init()