File -> Save workspace as ...Create folder for workspace like toolkit-projetFile -> Add Folder to workspaceCreate folder inside workspace folder
Example like this:~/toolkit-project/toolkit
~/toolkit-project/app
Execute at toolkit:go mod init github.com/miguelrech/toolkitExecute at appgo mod init applicationExecute at ~/toollit-projectgo work init toolkit app
Will be created file go.work:
cat go.work go 1.22.3use ( ./app ./toolkit)
Execute at toolkit:git init