alpaca-mock 0.26.0

Executable mock server for alpaca-rust trading and market-data flows
Documentation
1
2
3
4
5
6
7
8
9
use axum::Json;
use serde_json::json;

pub(crate) async fn health() -> Json<serde_json::Value> {
    Json(json!({
        "status": "ok",
        "service": "alpaca-mock",
    }))
}