diff --git a/src/server/controlchan/commands/help.rs b/src/server/controlchan/commands/help.rs index 5288151b..db5a6a1a 100644 --- a/src/server/controlchan/commands/help.rs +++ b/src/server/controlchan/commands/help.rs @@ -28,10 +28,11 @@ where { #[tracing_attributes::instrument] async fn handle(&self, _args: CommandContext) -> Result { - let text = vec![ - "Help:", + let text: Vec = vec![ + "Help:".to_string(), format!("Powered by libunftp: {}", env!("CARGO_PKG_VERSION")), - "View the docs at: https://unftp.rs/"]; + "View the docs at: https://unftp.rs/".to_string(), + ]; Ok(Reply::new_multiline(ReplyCode::HelpMessage, text)) } }