drogue_ttn/
lib.rs

1//! Mappings for APIs of *The Things Network*.
2
3pub mod v2;
4pub mod v3;
5
6use base64::STANDARD;
7use base64_serde::base64_serde_type;
8
9base64_serde_type!(Base64Standard, STANDARD);