I have a module that has a New function with a required parameter.
I can do dagger -m module --param=1 call ...
But I can't do dagger -m module --param=1 checks
Is this by design?
Also is there some standard way to initialize a module besides +default= pragmas?
Something that can run unsafe code like looking up env vars for secrets etc.
I'm currently using a script that figures out the parameters before invoking dagger, but then checks doesn't work.