14 lines
408 B
Rust
14 lines
408 B
Rust
// Copyright © 2021 The Radicle Link Contributors
|
|
|
|
use git_ext::Oid;
|
|
|
|
pub mod store;
|
|
pub use store::{Storage, Template};
|
|
|
|
use crate::signatures::ExtendedSignature;
|
|
|
|
/// A single change in the change graph. The layout of changes in the repository
|
|
/// is specified in the RFC (docs/rfc/0662-collaborative-objects.adoc)
|
|
/// under "Change Commits".
|
|
pub type Change = store::Change<Oid, Oid, ExtendedSignature>;
|