camber 0.1.2

Opinionated async Rust for IO-bound services on top of Tokio
Documentation
1
2
3
4
5
use crate::RuntimeError;

pub(crate) fn mq_error(e: impl std::fmt::Display) -> RuntimeError {
    RuntimeError::MessageQueue(e.to_string().into())
}