From 9f2f36eb7ff00d655ab9fb12f10434962b7de1a2 Mon Sep 17 00:00:00 2001 From: fxqnlr Date: Sun, 19 Feb 2023 12:14:37 +0100 Subject: Fixed import output && cleanup --- src/db.rs | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/db.rs') diff --git a/src/db.rs b/src/db.rs index a7c149c..9428466 100644 --- a/src/db.rs +++ b/src/db.rs @@ -7,8 +7,6 @@ use crate::{Modloader, config::Cfg, List, devdir, error::{MLE, MLError, ErrorTyp //MODS pub fn mods_insert(config: Cfg, id: &str, slug: &str, name: &str) -> MLE<()> { - println!("\t └Save mod info"); - let data = devdir(format!("{}/data.db", config.data).as_str()); let connection = Connection::open(data)?; @@ -160,8 +158,6 @@ pub fn mods_get_versions(config: Cfg, mods: Vec) -> MLE, current_link: &str, set_version: bool) -> MLE<()> { - println!("\t └Insert in list"); - let data = devdir(format!("{}/data.db", config.data).as_str()); let connection = Connection::open(data)?; -- cgit v1.2.3