DEV Community

Discussion on: Creating an opinionated GraphQL server with Go - Part 1

Collapse
 
mike1808 profile image
Michael Manukyan

So what was the point of changing that file to that one-liner if you then modifying it to the initial code with small changes?

Thread Thread
 
cmelgarejo profile image
Christian Melgarejo • Edited

Sorry, which one liner?
EDIT: Now should be pointing to the right file, everything should make sense now.

Thread Thread
 
mike1808 profile image
Michael Manukyan

So, we created this file cmd/gql-server/main.go, then we are moving that files logic to pkg/server/main.go and calling the exposed Run() function. Afterwards we add this utility which helps to read from .env file. However, we then are using these utility functions back in cmd/gql-server/main.go where we have Server.run(). I suppose we need to modify the file in pkg folder.

Am I missing something? I'm just trying to follow the guide.

Sorry if my initial comment sounded rude, didn't intend to that.

Thread Thread
 
cmelgarejo profile image
Christian Melgarejo

Yes you were correct, I've modified the source according your observations, thank you Michael!