diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-02 10:55:40 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-02 10:55:40 +0100 |
commit | 1f28832deaff3a2319cc88d5a83ffe506b784fc8 (patch) | |
tree | d4cfbe576725bb0952cb9e6fb21ea2931bad851e /src/login | |
parent | 73a6a0c014fd850a97eba175abe1ef8e2d0220b4 (diff) | |
download | aerogramme-1f28832deaff3a2319cc88d5a83ffe506b784fc8.tar.gz aerogramme-1f28832deaff3a2319cc88d5a83ffe506b784fc8.zip |
start replacing engine
Diffstat (limited to 'src/login')
-rw-r--r-- | src/login/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/login/mod.rs b/src/login/mod.rs index e934112..6c948cc 100644 --- a/src/login/mod.rs +++ b/src/login/mod.rs @@ -109,8 +109,8 @@ impl Region { impl Credentials { - pub fn k2v_client(&self) -> Result<K2vClient> { - self.storage.k2v_client() + pub fn k2v_client(&self) -> Result<RowStore, Error> { + self.storage.row.row_store() } pub fn s3_client(&self) -> Result<S3Client> { self.storage.s3_client() |