I tried to deploy Golang Project with module = mymodule, but failed with below error
Deployment failure:
Build failed: {"error":{"buildpackId":"google.go.functions-framework","buildpackVersion":"0.9.0","errorType":13,"canonicalCode":13,"errorId":"131fbb9d"
,"errorMessage":"go mod: [email protected]: invalid path: malformed module path \"mymodule\":
missing dot in first path element"},"stats":null}
If I rename the mymodule to have dot within it, e.g. mymodule.test , then it fails in my local as it tried to fetch it externally from https://mymodule.test which does not exist
Thanks in advance