Removed println!
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Martin Slot 2022-11-14 16:40:51 +01:00
parent 86582576a4
commit 5fbb26ccd2
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ pub fn insert_origin(
"INSERT INTO Origins (name, owner_name, repo_name, vcs_type) VALUES(?1, ?2, ?3, ?4)",
[&name, &owner_name, &repo_name, &vcs_type],
) {
Ok(x) => println!("good"),
Ok(x) => {} // TODO: there must be a better way of doing this in rust? To only do something when Err occurs
Err(e) => println!("{}", e),
};
}