Function
NewExecutionContext
(
organization string,
tenant string,
baseUri url.URL,
auth AuthResult,
identityUri url.URL,
input stream.Stream,
parameters []ExecutionParameter,
debug bool,
settings ExecutionSettings,
)
Source from the content-addressed store, hash-verified
| 20 | } |
| 21 | |
| 22 | func NewExecutionContext( |
| 23 | organization string, |
| 24 | tenant string, |
| 25 | baseUri url.URL, |
| 26 | auth AuthResult, |
| 27 | identityUri url.URL, |
| 28 | input stream.Stream, |
| 29 | parameters []ExecutionParameter, |
| 30 | debug bool, |
| 31 | settings ExecutionSettings, |
| 32 | ) *ExecutionContext { |
| 33 | return &ExecutionContext{ |
| 34 | organization, |
| 35 | tenant, |
| 36 | baseUri, |
| 37 | auth, |
| 38 | identityUri, |
| 39 | input, |
| 40 | parameters, |
| 41 | debug, |
| 42 | settings, |
| 43 | } |
| 44 | } |
Tested by
no test coverage detected