Hello, I've started to use Dagger with Go for a project and I noticed a function called with is listed whenever I use dagger functions. I assume it comes from my constructor but I'm not sure why. How can I hide it? Thanks in advance!
dagger functions
▶ ✔ connect 0.3s
✔ load workspace: . 5.1s
Name Description
with Configure the homelab constructor arguments.
The code:
type Homelab struct {
// +private
Src *dagger.Directory
}
func New(
// +optional
// +defaultPath="."
src *dagger.Directory,
) *Homelab {
return &Homelab{
Src: src,
}
}