mairie360_api_lib 0.8.3

Lib for mairie360 APIs
Documentation
1
2
3
4
5
6
use deadpool_redis::redis::AsyncCommands;
use deadpool_redis::Connection;

pub async fn get_key(conn: &mut Connection, key: &str) -> Result<String, redis::RedisError> {
    conn.get::<&str, String>(key).await
}