gbserver/gb-storage/src/lib.rs

7 lines
159 B
Rust
Raw Normal View History

2024-12-24 13:05:54 -03:00
mod postgres;
mod redis;
mod tikv;
2024-12-22 20:56:52 -03:00
2024-12-24 13:05:54 -03:00
pub use postgres::{CustomerRepository, PostgresCustomerRepository};
pub use redis::RedisStorage;
pub use tikv::TiKVStorage;