component_debug/lib.rs
1// Copyright 2021 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//! This library provides methods for getting information about components in Fuchsia.
6
7pub mod capability;
8pub mod cli;
9pub mod config;
10pub mod copy;
11pub mod dirs;
12pub mod doctor;
13pub mod explore;
14pub mod io;
15pub mod lifecycle;
16pub mod path;
17pub mod query;
18pub mod realm;
19pub mod route;
20pub mod storage;
21
22#[cfg(test)]
23pub mod test_utils;