Golang
Go Workspaces
** Workspaces
From Go 1.18 onwards there is native support for multi-module workspaces. This is done by having a go.work file present in your parent directory.
For a directory structure such as:
$ tree /my/parent/dir
/my/parent/dir
├── project-one
│ ├── go.mod
│ ├── project-one.go
│ └── project-one_test.go
└── project-two
├── go.mod
├── project-two.go
└── project-two_test.go
Create and populate the file by executing go work:
cd /my/parent/dir
go work init
go work use project-one
go work use project-two
asdf
After using go get or go install to install a package you need to run asdf reshim golang to get any new shims. - Reference: https://github.com/asdf-community/asdf-golang