Dprint and Cargo fmt

This commit is contained in:
Candifloss 2026-09-24 12:05:19 +05:30
parent abb4c7391e
commit e7d5da4678
4 changed files with 4 additions and 3 deletions

View File

@ -1,3 +1,3 @@
# ldap-kit # ldap-kit
Simple tools to manage LDAP Simple tools to manage LDAP

View File

@ -0,0 +1 @@

View File

@ -2,4 +2,4 @@ mod client;
mod user; mod user;
//pub use client::LdapClient; //pub use client::LdapClient;
pub use user::User; pub use user::User;

View File

@ -28,4 +28,4 @@ impl User {
pub fn has_attribute(&self, name: &str) -> bool { pub fn has_attribute(&self, name: &str) -> bool {
self.attributes.contains_key(name) self.attributes.contains_key(name)
} }
} }