headache, buttons, searchbox, figured out how to import functions and pass outputs to different files

This commit is contained in:
2026-04-27 23:14:11 +02:00
parent 19a99a388d
commit 84048a521b
4 changed files with 38 additions and 6 deletions
+1
View File
@@ -0,0 +1 @@
pub mod search;
+3
View File
@@ -0,0 +1,3 @@
pub fn perform_search(query: &str) {
println!("Performing search for: {}", query);
}