NewLambdaDeployer creates a new Lambda deployer
(clients *awsclients.Clients, cfg *config.CLIConfig)
| 30 | |
| 31 | // NewLambdaDeployer creates a new Lambda deployer |
| 32 | func NewLambdaDeployer(clients *awsclients.Clients, cfg *config.CLIConfig) *LambdaDeployer { |
| 33 | return &LambdaDeployer{ |
| 34 | clients: clients, |
| 35 | cfg: cfg, |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | // LambdaDeployResult contains information about a Lambda deployment |
| 40 | type LambdaDeployResult struct { |
no outgoing calls
no test coverage detected