olvideime de agregar lib.rs

This commit is contained in:
serxoz 2023-01-20 21:46:35 +01:00
parent 9dbf9060b8
commit f2a620499f

18
src/lib.rs Normal file
View File

@ -0,0 +1,18 @@
use std::env;
// le a variable de entorno TEMPLATES para configurar o path ó directorio dos templates
pub fn env_templates_dir() -> String {
match env::var_os("TEMPLATES") {
Some(val) => val.into_string().unwrap(),
None => "templates/".to_string(),
}
}
// le a variable de entorno PORT para configurar o porto de escoita
// por defecto o 3000
pub fn env_listen_port() -> u16 {
match env::var_os("PORT") {
Some(val) => val.into_string().unwrap().parse::<u16>().unwrap(),
None => 3000,
}
}