12 lines
297 B
Rust
12 lines
297 B
Rust
// Copyright © 2021 The Radicle Link Contributors
|
|
|
|
use git_ext::Oid;
|
|
|
|
pub mod store;
|
|
pub use store::{Contents, EntryId, Storage, Template, Timestamp};
|
|
|
|
use crate::signatures::ExtendedSignature;
|
|
|
|
/// A single change in the change graph.
|
|
pub type Entry = store::Entry<Oid, Oid, ExtendedSignature>;
|