| 28 | ) |
| 29 | |
| 30 | type ModuleFunction struct { |
| 31 | mod dagql.ObjectResult[*Module] |
| 32 | objDef *ObjectTypeDef // may be nil for special functions like the module definition function call |
| 33 | |
| 34 | metadata *Function |
| 35 | returnType ModType |
| 36 | args map[string]*UserModFunctionArg |
| 37 | } |
| 38 | |
| 39 | var _ Callable = &ModuleFunction{} |
| 40 |
nothing calls this directly
no outgoing calls
no test coverage detected