| 462 | } |
| 463 | |
| 464 | int main(int argc, char ** argv) { |
| 465 | struct export_lora_params params = get_default_export_lora_params(); |
| 466 | |
| 467 | if (!export_lora_params_parse(argc, argv, ¶ms)) { |
| 468 | return 1; |
| 469 | } |
| 470 | |
| 471 | export_lora(¶ms); |
| 472 | |
| 473 | return 0; |
| 474 | } |
nothing calls this directly
no test coverage detected