axum-cometd 0.7.1

Framework for CometD server creation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod callback;
mod client_id;
mod client_receiver;
mod client_sender;
mod cookie_id;
mod id;
mod subscription_id;

mod callback_args;
/// Contains errors.
pub mod error;
/// Contains cometd Message struct.
pub mod messages;

pub(crate) use {
    callback::*, client_receiver::*, client_sender::*, cookie_id::*, id::*, subscription_id::*,
};
pub use {callback_args::*, client_id::*};