My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/apps/servers/octopus/supergit/src/files/mod.rs

15 lines
470 B

//! File tree abstractions
//!
//! The supergit files API is split into two parts: `FileTree`, which
//! is mostly used internally and only exposed to allow external tools
//! to rely on the same indexing mechanism as supergit, and
//! `Explorer`, which is a high-level API for loading trees for
//! specific commits.
//!
pub(self) mod tree_utils;
mod tree;
pub use tree::{FileTree, TreeEntry, EntryType};
mod explorer;
pub use explorer::{Explorer, Yield, YieldType};