mirror of
https://github.com/Noratrieb/haesli.git
synced 2026-01-15 20:25:02 +01:00
11 lines
232 B
Rust
11 lines
232 B
Rust
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!()
|
|
}
|