meli: Move components/contacts -> contacts

pull/272/head
Manos Pitsidianakis 2023-08-11 12:49:06 +03:00
parent 005bf3881e
commit 64ab65ddff
Signed by: Manos Pitsidianakis
GPG Key ID: 7729C7707F7E09D0
4 changed files with 7 additions and 7 deletions

View File

@ -38,9 +38,6 @@ pub use mail::*;
pub mod notifications;
pub mod contacts;
pub use contacts::*;
pub mod mailbox_management;
pub use mailbox_management::*;

View File

@ -53,8 +53,8 @@ pub struct ContactManager {
initialized: bool,
}
impl fmt::Display for ContactManager {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
impl std::fmt::Display for ContactManager {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "contacts")
}
}

View File

@ -67,8 +67,8 @@ pub struct ContactList {
id: ComponentId,
}
impl fmt::Display for ContactList {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
impl std::fmt::Display for ContactList {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "contact list")
}
}

View File

@ -77,6 +77,9 @@ pub use crate::components::*;
pub mod utilities;
pub use crate::utilities::*;
pub mod contacts;
pub use crate::contacts::*;
#[macro_use]
pub mod conf;
pub use crate::conf::{