openlimits_nash/
nash_credentials.rs

1/// This structure represents the Nash account credentials
2#[derive(Clone)]
3pub struct NashCredentials {
4    pub api_secret: String,
5    pub api_key: String,
6}