blob: 3c3b2faeed2acdcb9d35aa086267758e5f387def [file]
// Copyright 2023 The Fuchsia 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 client;
pub use crate::client::error::Error as ClientError;
pub mod server;
pub use crate::server::error::Error as ServerError;
pub use crate::server::ServerEvent;
pub mod types;
#[cfg(any(test, feature = "test-utils"))]
pub mod test_utils;
#[cfg(test)]
pub mod tests;