pull out args wip

This commit is contained in:
2023-02-11 14:38:58 +01:00
parent 04526c052b
commit c4edd29f50
3 changed files with 12 additions and 12 deletions

View File

@@ -20,7 +20,7 @@ impl Handler for Input {
.ok_or(eyre::anyhow!("could not find name"))?;
let description = render_description(t);
let input = rust::import("dagger_core", "Input");
//let input = rust::import("dagger_core", "Input");
let fields = match t.input_fields.as_ref() {
Some(i) => render_input_fields(i)?,
@@ -32,8 +32,6 @@ impl Handler for Input {
pub struct $name {
$(if fields.is_some() => $fields)
}
impl $input for $name {}
};
Ok(out)