1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2021 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.

//! This library provides methods for getting information about components in Fuchsia.

pub mod capability;
pub mod cli;
pub mod config;
pub mod copy;
pub mod dirs;
pub mod doctor;
pub mod explore;
pub mod io;
pub mod lifecycle;
pub mod path;
pub mod query;
pub mod realm;
pub mod route;
pub mod storage;

#[cfg(test)]
pub mod test_utils;