orcast 0.1.2

Lean Alpaca options trading client scaffolding (paper-first, Level 3-ready)
Documentation
/// Returns a greeting for the input name
///
/// # Examples
///
/// ```
/// let result = orcast::greet("World");
/// assert_eq!(result, "Hello, World!");
/// ```
pub fn greet(name: &str) -> String {
    format!("Hello, {name}!")
}

pub mod config;
pub mod alpaca;
pub mod error;
pub mod http;
pub mod trading;
pub mod market_data;
pub mod streaming;
pub mod strategies;

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_greet() {
        assert_eq!(greet("World"), "Hello, World!");
    }
}