Implement from_csv
This commit is contained in:
parent
32955da03f
commit
90ebe3b8f5
@ -1,6 +1,6 @@
|
|||||||
//! Convert values to and from data formats like JSON and TOML.
|
//! Convert values to and from data formats like JSON and TOML.
|
||||||
|
|
||||||
use crate::{Macro, MacroInfo, Result, Table, Value};
|
use crate::{Macro, MacroInfo, Result, Table, Value, ValueType};
|
||||||
|
|
||||||
pub struct FromJson;
|
pub struct FromJson;
|
||||||
|
|
||||||
@ -49,7 +49,7 @@ impl Macro for FromCsv {
|
|||||||
identifier: "from_csv",
|
identifier: "from_csv",
|
||||||
description: "Create a whale value from a CSV string.",
|
description: "Create a whale value from a CSV string.",
|
||||||
group: "data",
|
group: "data",
|
||||||
inputs: vec![],
|
inputs: vec![ValueType::String],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user