1
2
3
4
5
use crate::connection::transaction::Ctx;

pub trait ExtractFromTransactionCtx {
    fn extract(ctx: &Ctx) -> Self;
}