import createServer from './server' import CONFIG from './config' const { app } = createServer() const url = new URL(CONFIG.GRAPHQL_URI) app.listen({ port: url.port }, () => { /* eslint-disable-next-line no-console */ console.log(`GraphQLServer ready at ${CONFIG.GRAPHQL_URI} 🚀`) })