Method
run_system
(
system: System,
global: Option<PathBuf>,
context: Option<String>,
admerge: bool,
)
Source from the content-addressed store, hash-verified
| 214 | } |
| 215 | |
| 216 | async fn run_system( |
| 217 | system: System, |
| 218 | global: Option<PathBuf>, |
| 219 | context: Option<String>, |
| 220 | admerge: bool, |
| 221 | ) -> Result<()> { |
| 222 | let options = ConfigOptions { |
| 223 | names: FunctionNames::new(system.pkg_name(), None), |
| 224 | global, |
| 225 | context, |
| 226 | admerge, |
| 227 | }; |
| 228 | cargo_lambda_system::run(&system, &options).await |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | fn print_version() -> Result<()> { |
Callers
nothing calls this directly
Tested by
no test coverage detected