(logLevel: LogLevel)
| 304 | }; |
| 305 | |
| 306 | export const cli = async (logLevel: LogLevel) => { |
| 307 | const remotionRoot = RenderInternals.findRemotionRoot(); |
| 308 | await CliInternals.initializeCli(remotionRoot); |
| 309 | |
| 310 | await executeCommand( |
| 311 | parsedLambdaCli._, |
| 312 | remotionRoot, |
| 313 | logLevel, |
| 314 | LambdaClientInternals.awsImplementation, |
| 315 | awsFullClientSpecifics, |
| 316 | ); |
| 317 | }; |
nothing calls this directly
no test coverage detected