add amqp_messaging

This commit is contained in:
nora 2022-02-20 20:26:18 +01:00
parent 45196c722c
commit 3b656b911a
8 changed files with 51 additions and 12 deletions

View file

@ -0,0 +1,3 @@
#![warn(rust_2018_idioms)]
mod method;

View file

@ -0,0 +1,3 @@
use amqp_core::ChannelHandle;
pub async fn handle_method(channel_handle: ChannelHandle) {}