All test stuff #88

Merged
ABastionOfSanity merged 29 commits from all_test_stuff into main 2023-01-30 21:59:14 +00:00
Showing only changes of commit 07435d0597 - Show all commits

View File

@ -49,7 +49,7 @@ func Server(ctx client.Context) {
router.Handle("/graphql", srv)
log.Info("Connect to GraphQL playground", "url", fmt.Sprintf("http://localhost:%s", port))
err := http.ListenAndServe("0.0.0.0:"+port, router) //nolint: all
err := http.ListenAndServe("localhost:"+port, router) //nolint: all
if err != nil {
panic(err)
}