Skip to content

Commit

Permalink
run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
EmrysMyrddin committed Apr 28, 2023
1 parent c6dd2b1 commit 3701dcf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion examples/apollo-federation/gateway/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ async function main() {
// Start the server and explore http://localhost:4000/graphql
const server = createServer(yoga)
server.listen(4000, () => {
console.info(`Server is running on http://localhost:4000${yoga.graphqlEndpoint}`)
console.info(
`Server is running on http://localhost:4000${yoga.graphqlEndpoint}`,
)
})
}

Expand Down
4 changes: 3 additions & 1 deletion examples/hello-world/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,7 @@ const yoga = createYoga({

const server = createServer(yoga)
server.listen(4000, () => {
console.log(`Server is running on http://localhost:4000${yoga.graphqlEndpoint}`)
console.log(
`Server is running on http://localhost:4000${yoga.graphqlEndpoint}`,
)
})

0 comments on commit 3701dcf

Please sign in to comment.