feat: create struct from json response and create a table view

This commit is contained in:
2026-05-03 16:55:23 +02:00
parent 58687643fb
commit 175f5459a8
5 changed files with 61 additions and 15 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ fn main() -> Result<(), Box<dyn Error>> {
ui.on_request_text_input(|text| {
println!("User input: {}", text);
let response = rutracker::search(&text);
let _response = rutracker::search(&text);
});
ui.run()?;