(project_name: &str, template: P)
| 71 | } |
| 72 | |
| 73 | pub fn cargo_lambda_new<P: AsRef<Path>>(project_name: &str, template: P) -> LambdaProject { |
| 74 | let project = project::project().build(); |
| 75 | cargo_lambda_new_in_root(project_name, template, project.root()) |
| 76 | } |
| 77 | |
| 78 | pub fn cargo_lambda_new_in_root<P: AsRef<Path>, R: AsRef<Path>>( |
| 79 | project_name: &str, |
no test coverage detected