Hi, I'm wondering, if there exists some documentation about the usage of dagger interfaces besides https://docs.dagger.io/api/interfaces/
My concrete issue is how I can pass an optional argument value:
given: MyModule with the Fooer interface containing a Foo function as in the example.
when: Foo has an optional argument bar bool with // +optional and // +default=false
then: how shall the bar arg be passed?
what I tried so far: dagger.MyModuleFooerFooOpts{Bar: bar} , dagger.FooerFooOpts.. , dagger.FooOpts..
Any help or hint would be greatly appreciated 🙂