1
2
3
4
5
6
7
8
9
10
11
// 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>;