fidl_contrib/
lib.rs

1// Copyright 2022 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
5#![deny(missing_docs)]
6
7//! fidl_contrib contains libraries useful for interacting with FIDL, but not directly owned by the FIDL team.
8
9pub mod protocol_connector;
10
11pub use protocol_connector::ProtocolConnector;