removed more dead code

This commit is contained in:
shockrah 2020-08-08 00:31:12 -07:00
parent 537ba957e4
commit b4ec7005c7

View File

@ -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
}