DEV Community

Discussion on: A gentle introduction to the Go tool chain

Collapse
 
kevinschweikert profile image
Kevin Schweikert • Edited

You don't need to put your sourcefiles in the $GOPATH. You can create a folder anywhere and use Go Modules with go mod init github.com/yourusername for example

Collapse
 
aminnairi profile image
Amin

Thanks for your answer. This sure looks easier that way. Can you still include this project on others folders of your local filesystem as well?