Skip to content

Commit

Permalink
Merge pull request #59 from spiralover/refactor/app
Browse files Browse the repository at this point in the history
feat(rabbitmq): expose option structs
  • Loading branch information
Ahmard authored Sep 2, 2024
2 parents 7d65c0d + e93447d commit 7a4ba35
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Medullah Changelog
medullah-web changelog file

## 0.17.2 (2024-09-02)
* feat(rabbitmq): expose option structs

## 0.17.1 (2024-09-02)
* feat(rabbitmq): added "ack_opt()" & "nack_opt()" to ack & nack with option

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "medullah-web"
version = "0.17.1"
version = "0.17.2"
edition = "2021"
license = "MIT"
description = "Micro-Framework Base on Ntex"
Expand Down
4 changes: 2 additions & 2 deletions src/rabbitmq/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ use std::future::Future;
use std::sync::Arc;

use futures_util::StreamExt;
use lapin::{options::*, types::FieldTable, BasicProperties, Channel};
use lapin::{types::FieldTable, BasicProperties, Channel};
use log::{error, info};
use tokio::runtime::Handle;
use tokio::task::JoinHandle;

pub use {
lapin::message::{Delivery, DeliveryResult},
lapin::ExchangeKind,
lapin::{options::*, ExchangeKind},
};

use crate::prelude::{AppResult, OnceLockHelper};
Expand Down

0 comments on commit 7a4ba35

Please sign in to comment.