pub fn input<K>(name: K) -> Result<String, VarError>where
K: ToString,Expand description
Get an action’s input parameter.
use actions_core as core;
let ms: u32 = core::input("milliseconds")
.expect("Failed to get milliseconds")
.parse()
.expect("Failed to parse milliseconds");