diff options
author | Alex Auvolat <alex@adnab.me> | 2022-05-19 14:33:49 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-05-19 14:33:49 +0200 |
commit | 6be90936a108d971e0cfa3ddaa9c2d54557e30f3 (patch) | |
tree | ed0dae1b4ebf3215b808b81d9980376e9b5dee26 /src/login/ldap_provider.rs | |
parent | 1ac56a91981bee4867dfb054bd2199c6111fe1eb (diff) | |
download | aerogramme-6be90936a108d971e0cfa3ddaa9c2d54557e30f3.tar.gz aerogramme-6be90936a108d971e0cfa3ddaa9c2d54557e30f3.zip |
Some refactoring
Diffstat (limited to 'src/login/ldap_provider.rs')
-rw-r--r-- | src/login/ldap_provider.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/login/ldap_provider.rs b/src/login/ldap_provider.rs index 6108e6e..54ddbd5 100644 --- a/src/login/ldap_provider.rs +++ b/src/login/ldap_provider.rs @@ -1,5 +1,6 @@ use anyhow::Result; use async_trait::async_trait; +use rusoto_signature::Region; use crate::config::*; use crate::login::*; @@ -9,7 +10,7 @@ pub struct LdapLoginProvider { } impl LdapLoginProvider { - pub fn new(_config: LoginLdapConfig) -> Result<Self> { + pub fn new(_config: LoginLdapConfig, _k2v_region: Region, _s3_region: Region) -> Result<Self> { unimplemented!() } } |