radicle_cob/change.rs
1// Copyright © 2021 The Radicle Link Contributors
2
3use git_ext::Oid;
4
5pub mod store;
6pub use store::{Contents, EntryId, Storage, Template, Timestamp};
7
8use crate::signatures::ExtendedSignature;
9
10/// A single change in the change graph.
11pub type Entry = store::Entry<Oid, Oid, ExtendedSignature>;