Making two different go
modules
source.cloud.google.com/me/a
source.cloud.google.com/me/b
With source.cloud.google.com/me/common
as a common lib dependency (to share a model)
I'm trying to go get source.cloud.google.com/me/common
(even manually wrote it in the go.mod
file) but I keep receiving the following error:
package source.cloud.google.com/me/common:
unrecognized import path "source.cloud.google.com/me/common"
(parse https://source.cloud.google.com/me/common?go-get=1: no go-import meta tags ())
I have gcloud
set up to be able to use app deploy
and create new source repositories. I've tried setting up ssh
for google cloud and attempted to use manual credentials. This neither works locally or in the google cloud build service.
I want to do two things:
- Be able to
go get
this dependencsource.cloud.google.com/me/common
- Be able to integrate this
go get
into my App Engine automated build pipeline.
Any help would be appreciated.