pub fn greet(name: &str) -> String {
format!("Hello, {name}!")
}
pub mod config;
pub mod error;
pub mod http;
pub mod market_data;
pub mod screener;
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_greet() {
assert_eq!(greet("World"), "Hello, World!");
}
}