Skip to main content

openlimits_binance/
binance_credentials.rs

1/// This struct represents the credentials and receives the api key and api secret as parameters.
2#[derive(Clone, Debug)]
3pub struct BinanceCredentials {
4    pub api_key: String,
5    pub api_secret: String,
6}