blob: 0eff602cd8b028946b6d079f96f353037d3405ec [file] [log] [blame]
// 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;