bt_bass/lib.rs
1// Copyright 2023 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5pub mod client;
6pub mod server;
7pub mod types;
8pub use crate::client::error::Error as ClientError;
9pub use crate::server::Error as ServerError;
10
11#[cfg(any(test, feature = "test-utils"))]
12pub mod test_utils;
13
14#[cfg(test)]
15pub mod tests;