the go language sets how to set the project folder when there are multiple projects in gopath,?
the environment variable is set as follows:
, which is installed on go 1.11, which is installed on windows.GOROOT D:\workspace\go
PATH D:\workspace\go\bin
GOPATH D:\workspace\www\go_work //GOPATHGOROOT
Under the go_work folder, there are bin , pkg , and src three directories.
question:
if there are multiple projects, such as project_01 , project_02 , project_03 , where should I put these three project folders?
