Hi,
I've developed a Dagger Module that I'd like to try locally from another Go project (i.e.invoke the module from another project without having to publish the module). I'm trying to use Go workspaces as per the official docs (https://docs.dagger.io/manuals/developer/go/882081/module-structure#go-workspaces) but I can't get it to work.
The directory structure of my project is as follows:
repo
- cmd (The entry point, contains a main.go and go.mod).
- ci (Dagger Module, contains dagger.json, go.mod, etc.)
- go.work (Uses ./ci and ./cmd)
Is there an example of how to use a Dagger Module and a go.work file? Thanks in advance!