#![allow(dead_code)]
struct LibInput {
r#type: String,
}
pub fn do_something(input: LibInput) {
match input.r#type.as_str() {
"a" => println!("First value"),
"b" => println!("Second value"),
_ => panic!("Unknown type: {}", input.r#type),
}
}
mod foo;
fn main() {}