blob: 9b9a72febb4277c3d95adef3a03afa2a80f20415 [file] [log] [blame]
// Copyright 2018 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.
//! `fidl_fuchsia_pkg_ext` contains wrapper types around the auto-generated `fidl_fuchsia_pkg`
//! bindings.
mod types;
pub use crate::types::{BlobId, BlobInfo};
mod repo;
pub use crate::repo::{
MirrorConfig, MirrorConfigBuilder, RepositoryBlobKey, RepositoryConfig,
RepositoryConfigBuilder, RepositoryConfigs, RepositoryKey,
};
mod errors;
pub use crate::errors::{BlobIdParseError, RepositoryParseError};