Make native version to compaile again

This commit is contained in:
Sebastian Miasojed
2024-11-07 15:04:35 +01:00
parent 9b23e19479
commit 4f6debcbe3
17 changed files with 119 additions and 373 deletions
+1 -1
View File
@@ -11,6 +11,6 @@ use self::input::Input;
use self::output::Output;
pub trait Process {
fn run() -> anyhow::Result<()>;
fn run(input_file: Option<&mut std::fs::File>) -> anyhow::Result<()>;
fn call(input: Input) -> anyhow::Result<Output>;
}