1use log::info; 2 3use crate::consts::messages; 4 5/// Prints the starting greetings 6pub fn greet() { 7 info!("{}", *messages::GREET); 8}