mirror of
https://github.com/Noratrieb/haesli.git
synced 2026-01-14 19:55:03 +01:00
split generated code so that methods are now in core
This commit is contained in:
parent
3b656b911a
commit
c333f20531
20 changed files with 1337 additions and 1206 deletions
|
|
@ -1,3 +1,3 @@
|
|||
#![warn(rust_2018_idioms)]
|
||||
|
||||
mod method;
|
||||
pub mod methods;
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
use amqp_core::ChannelHandle;
|
||||
|
||||
pub async fn handle_method(channel_handle: ChannelHandle) {}
|
||||
4
amqp_messaging/src/methods.rs
Normal file
4
amqp_messaging/src/methods.rs
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
use amqp_core::methods::Method;
|
||||
use amqp_core::ChannelHandle;
|
||||
|
||||
pub async fn handle_method(_channel_handle: ChannelHandle, _method: Method) {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue