archivist_lib/
lib.rs

1// Copyright 2019 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#![warn(clippy::all, clippy::clone_on_ref_ptr, clippy::unused_async, clippy::await_holding_lock)]
6
7mod accessor;
8pub mod archivist;
9pub mod component_lifecycle;
10mod configs;
11pub mod constants;
12mod diagnostics;
13mod error;
14pub mod events;
15pub mod formatter;
16pub mod identity;
17mod inspect;
18pub mod logs;
19mod pipeline;
20pub mod severity_filter;
21
22#[cfg(test)]
23mod testing;