(mod dagql.ObjectResult[*Module])
| 104 | } |
| 105 | |
| 106 | func (env *Env) WithModule(mod dagql.ObjectResult[*Module]) *Env { |
| 107 | cp := env.Clone() |
| 108 | cp.deps = cp.deps.Append(NewUserMod(mod)) |
| 109 | cp.installedModules = append(cp.installedModules, mod) |
| 110 | return cp |
| 111 | } |
| 112 | |
| 113 | func (env *Env) Privileged() *Env { |
| 114 | env = env.Clone() |
nothing calls this directly
no test coverage detected