archivist_lib/logs/servers/mod.rs
1// Copyright 2022 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
5mod log;
6mod log_settings;
7mod log_stream;
8
9pub use log::LogServer;
10pub use log_settings::LogSettingsServer;
11pub use log_stream::LogStreamServer;
12pub(crate) use log_stream::{extend_fxt_record, ExtendRecordOpts};