From daa6121a6d919a32e2b25340ab73767f18048482 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@clevo" Date: Thu, 8 Dec 2022 22:55:18 +0100 Subject: [PATCH] Remove sql_cache call in lib --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 76baeb0..9b62215 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,8 +15,6 @@ use mouth::Mouth; /// Entry point of the library, propagates errors to `main`. pub fn run() -> Result<(), Box> { - cache::sql_cache(); - Ok(()) }