fuchsia_repo/lib.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
5#![allow(clippy::result_large_err)]
6#![allow(clippy::let_unit_value)]
7
8pub mod body;
9pub mod range;
10pub mod repo_builder;
11pub mod repo_keys;
12pub mod repository;
13pub mod resource;
14pub mod test_utils;
15pub mod util;
16
17#[cfg(not(target_os = "fuchsia"))]
18pub mod manager;
19#[cfg(not(target_os = "fuchsia"))]
20pub mod package_manifest_watcher;
21#[cfg(not(target_os = "fuchsia"))]
22pub mod repo_client;
23#[cfg(not(target_os = "fuchsia"))]
24pub mod server;