DEV Community

Discussion on: Giving Go another chance: command line arguments

Collapse
 
biros profile image
Boris Jamot ✊ /

Have a look at Go modules! It's the replacement for GOPATH. I've been using it for few months and it's cool. Dependency management, vendoring,... It's the foundation for the future of Go.

Collapse
 
detunized profile image
Dmitry Yakimenko

Thanks, I look it up. ATM I'm trying to avoid getting too deep into tooling and just want to hack a bit in free flow. I know that dependency management in Go is not very pleasant and I don't want to go there just yet. I'm ok running go get and just use the modules from $GOPATH.