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/// Path to the service directory in an application's root namespace.
10pub const SVC_DIR: &'static str = "/svc";
11
12/// The name of the default instance of a FIDL service.
13pub const DEFAULT_SERVICE_INSTANCE: &'static str = "default";
14
15pub mod client;
16pub mod directory;
17pub mod server;