use add_key;
use key_exist;
use Connection;
/**
* Securely adds a key to Redis if it does not already exist.
* If the key already exists, it returns an error.
*
* # Arguments
* * `conn` - A mutable reference to the Redis connection.
* * `key` - The key to be added.
* * `value` - The value to be associated with the key.
*
* # Returns
* * `Ok(())` if the key was added successfully.
* * `Err(redis::RedisError)` if the key already exists or if there was an error.
*/
pub async