stock-trek 0.6.0

Stock Trek time-series analysis
Documentation
1
2
3
4
5
6
7
8
use crate::error::result::StockTrekResult;
use serde_json::Value;

pub type Executor = Box<dyn ExecutorTrait>;

pub trait ExecutorTrait: Send + Sync {
    fn send_message(&self, message: Value) -> StockTrekResult<Value>;
}