bitcoin_de/
lib.rs

1// lib.rs
2#![doc = include_str!("../README.md")]
3/// Bitcoin.de Trading API SDK for API version 4
4///
5/// This module provides a Rust implementation of the Bitcoin.de Trading API v4,
6/// allowing developers to interact with the Bitcoin.de cryptocurrency exchange
7/// programmatically.
8pub mod bitcoin_de_trading_api_sdk_v4;
9
10/// Re-exports all items from the bitcoin_de_trading_api_sdk_v4 module
11///
12/// This allows users to import types and functions directly from the crate root
13/// without having to specify the full module path.
14pub use bitcoin_de_trading_api_sdk_v4::*;