chore: change Info

This commit is contained in:
Jesús Pérez Lorenzo 2021-09-08 19:28:48 +01:00
parent ba3c279d66
commit e966738295

View File

@ -43,6 +43,7 @@ const PKG_VERSION: &'static str = env!("CARGO_PKG_VERSION");
// const PKG_VERSION: Option<&'static str> = option_env!("CARGO_PKG_VERSION");
const PKG_NAME: &'static str = env!("CARGO_PKG_NAME");
const PKG_AUTHORS: &'static str = env!("CARGO_PKG_AUTHORS");
const PKG_DESCRIPTION: &'static str = env!("CARGO_PKG_DESCRIPTION");
pub mod defs;
pub mod graphql;
@ -66,7 +67,8 @@ async fn up_web_server(webpos: usize) -> Result<()> {
"ZTerton",
format!("web: {}",&webpos),
format!("version: {}",PKG_VERSION),
format!("Authors: {}",PKG_AUTHORS),
format!("authors: {}",PKG_AUTHORS),
format!("{}",PKG_DESCRIPTION),
);
zterton::init_app(&mut app_env,"").await.unwrap_or_else(|e|
panic!("Error loadding app environment {}",e)