use openlark_core::config::Config;
pub mod reset;
#[derive(Debug, Clone)]
pub struct PasswordService {
config: Config,
}
impl PasswordService {
pub fn new(config: Config) -> Self {
Self { config }
}
pub fn reset(&self) -> reset::ResetPasswordRequestBuilder {
reset::ResetPasswordRequestBuilder::new(self.config.clone())
}
}