// Copyright 2023 The Sapphire Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style license that can be | |
// found in the LICENSE file. | |
pub mod types; | |
pub use types::{Characteristic, Descriptor, Result}; | |
pub mod server; | |
pub use server::Server; | |
pub mod client; | |
pub use client::Client; | |
pub mod central; | |
pub use central::Central; | |
#[cfg(test)] | |
mod tests; |