From b4ec7005c7df210f8346d53b248689574330629e Mon Sep 17 00:00:00 2001 From: shockrah Date: Sat, 8 Aug 2020 00:31:12 -0700 Subject: [PATCH] removed more dead code --- server/src/db_types.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/server/src/db_types.rs b/server/src/db_types.rs index e1d15ee..4969457 100644 --- a/server/src/db_types.rs +++ b/server/src/db_types.rs @@ -1,13 +1,7 @@ pub type Integer = i32; -pub type UInteger = u32; pub type UBigInt = u64; pub type BigInt = i64; pub type VarChar = String; -pub enum DbError { - BadParam(&'static str), - Connection(&'static str), - Internal -}