gbserver/gb-storage/src/lib.rs

7 lines
137 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-25 16:25:09 -03:00
pub use postgres::PostgresCustomerRepository;
2024-12-24 13:05:54 -03:00
pub use redis::RedisStorage;
pub use tikv::TiKVStorage;