fix: remove boilerplate

This commit is contained in:
Oskar Manhart
2023-10-09 19:10:50 +02:00
parent 2ac3a1c952
commit c4603c8a89
2 changed files with 1 additions and 7 deletions

View File

@@ -1,3 +1 @@
fn main() { fn main() {}
println!("Test lib: {}", winapps::add(1, 2));
}

View File

@@ -160,7 +160,3 @@ pub fn get_data_dir() -> PathBuf {
path path
} }
pub fn add(left: usize, right: usize) -> usize {
left + right
}