Skip to content

Commit

Permalink
Modify RedisConfig and SledConfig to pub
Browse files Browse the repository at this point in the history
  • Loading branch information
rmqtt committed Dec 17, 2023
1 parent 90618cb commit c138398
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ use anyhow::Error;
use serde::de;

use storage_redis::RedisStorageDB;
use storage_sled::SledConfig;
use storage_sled::SledStorageDB;

mod storage;
mod storage_redis;
mod storage_sled;

use crate::storage_redis::RedisConfig;
pub use storage::{DefaultStorageDB, List, Map, StorageDB, StorageList, StorageMap};
pub use storage_redis::RedisConfig;
pub use storage_sled::SledConfig;

pub type Result<T> = anyhow::Result<T>;

Expand Down

0 comments on commit c138398

Please sign in to comment.