use super::super::utils::http_get;
use crate::error::Result;
use std::collections::HashMap;
const BASE_URL: &str = "https://api.kucoin.com";
pub struct KuCoinSpotRestClient {
_api_key: Option<String>,
_api_secret: Option<String>,
}
impl KuCoinSpotRestClient {
pub fn new(api_key: Option<String>, api_secret: Option<String>) -> Self {
KuCoinSpotRestClient {
_api_key: api_key,
_api_secret: api_secret,
}
}
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
gen_api!(format!("/api/v2/market/orderbook/level2?symbol={}", symbol))
}
pub fn fetch_l3_snapshot(symbol: &str) -> Result<String> {
gen_api!(format!("/api/v2/market/orderbook/level3?symbol={}", symbol))
}
}