1
2
3
4
5
6
7
8
9
10
// See https://github.com/SSheldon/rust-objc/pull/75 for updates on issues to do with compiler
// warnings caused by `ATOMIC_USIZE_INIT` being deprecated
#![allow(deprecated)]

mod error;
pub mod gatt;
mod peripheral;
mod uuid;

pub use self::{error::*, peripheral::Peripheral, uuid::*};