Workspace in Golang 1.18+

Introduction Go 1.18 introduced workspace which makes life easy with multi-module development spaces. Here’s a sneak peak on how to use it and set up the develoment environment on Goland. Each module has it’s own go.mod and all the dependencies can be synced in one shot throughout the project. What’s a Golang Workspace? Workspaces in Go 1.18 let you work on multiple modules simultaneously without having to edit go.mod files for each module....

September 13, 2022 · 2 min · Sourav Badami