use super::error::ContactError;
use tracing::instrument;
#[instrument(name = "get the secret key from parameter store")]
pub async fn get_parameter(key: &str) -> Result<String, ContactError> {
Ok("0x123456789abcedf0123456789abcedf012345678".to_owned())
}