Hello Team
I have dagger module which is working fine using dagger cmd
dagger -m git@abc.com:namespace/daggerverse.git/module1@v0.0.2
this lives in monorepo where multiple dagger module is there, they live within their own directories containing go.mod
Requirement:
I need to get/install above module in other project(not a dagger module but a dagger project using sdk, kind of legacy orchestrator). I am using go get cmd to get that module but getting this error
<<Cmd>>
go get abc.com/namespace/daggerverse/module1@v0.0.2
<<Error>>
go: module abc.com/namespace/daggerverse/module1@v0.0.2 found, but does not contain package abc.com/namespace/daggerverse/module1
Could you pleae guide