Remove unneccessary pub declarations

This commit is contained in:
finga 2021-07-08 14:13:59 +02:00
parent cc19087195
commit f726083759
4 changed files with 15 additions and 15 deletions

View file

@ -7,7 +7,7 @@ use posixmq::PosixMq;
pub struct Info {
/// Name of the queue
#[clap(value_name = "QUEUE")]
pub queue: String,
queue: String,
}
impl Info {