fuchsia_component/lib.rs
1// Copyright 2017 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//! Connect to or provide Fuchsia services.
6
7#![deny(missing_docs)]
8
9/// The name of the default instance of a FIDL service.
10pub const DEFAULT_SERVICE_INSTANCE: &'static str = "default";
11
12pub use client::SVC_DIR;
13pub use {
14 fuchsia_component_client as client, fuchsia_component_directory as directory,
15 fuchsia_component_server as server,
16};