This commit is contained in:
nora 2022-03-20 22:18:32 +01:00
parent 96f2d9f4f0
commit 6f6c0848ac
2 changed files with 67 additions and 41 deletions

View file

@ -0,0 +1,11 @@
use haesli_core::{
amqp_todo,
connection::Channel,
methods::{ExchangeDeclare, Method},
};
use crate::Result;
pub fn declare(_channel: Channel, _exchange_declare: ExchangeDeclare) -> Result<Method> {
amqp_todo!()
}