1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! A Rust wrapper for the Luno API. 🦀🚀
//!
//! In order to use some features of the [Luno API](https://luno.com/api) you need
//! to have an existing Luno account or you can sign up at [https://luno.com/signup](https://luno.com/signup).
//! Go to [https://www.luno.com/wallet/security/api_keys](https://www.luno.com/wallet/security/api_keys) to
//! create a new API key with appropriate permissions.

pub mod accounts;
pub mod beneficiaries;
pub mod client;
pub mod market;
pub mod orders;
pub mod quotes;
pub mod trades;
pub mod transactions;

mod credentials;
mod urls;

pub use client::LunoClient;
pub use market::{Currency, TradingPair};
pub use orders::{LimitOrderType, MarketOrderType, StopDirection};