1use sqlx::{Pool, Postgres}; 2 3pub type StoragePool = Pool<Postgres>; 4 5use deadpool_redis::Pool as DeadPool; 6pub type CachePool = DeadPool;