//!//! Messaging are about publishing and subscribing messages. `Publisher` is the struct to utilize to deliver message to broker.
//!usecrate::message::Message;structPublisher{group: String,
}implPublisher{pubfnnew(group:&str)->Self{
Publisher {
group: group.to_owned(),}}pubfnpublish(&mutself, message:&Message){}}