Remove old Error conversion

This commit is contained in:
Samuel Lorch 2023-10-29 22:21:32 +01:00
parent f951718241
commit 529a105bef

View file

@ -31,16 +31,6 @@ pub enum ConfigError {
IOError(#[from] std::io::Error),
}
/*
// TODO do Error conversion
impl Into<ApiError> for ConfigError {
fn into(self) -> ApiError {
ApiError::Leet
}
}
*/
pub const CURRENT_CONFIG_PATH: &str = "config.json";
pub const PENDING_CONFIG_PATH: &str = "pending.json";