Hi I've created a dagger project as a golang package inside of our monorepo. The monorepo has a go workspace but we do not want to include the dagger package in the workspace. For other packages we have used GOWORK=off to keep them excluded.
We have a simple dagger function that just takes a string input, and doesn't need any directory/fs input. But by default it is still trying to upload/import the whole workspace which is time consuming.
dagger call container-echo --string-arg hi
How can I get it to stop trying to upload everything in the workspace? It's not part of the workspace.
The module is defined in /treasury/test, but it keeps trying to upload /treasury making it take a long time.