aboutsummaryrefslogtreecommitdiff
path: root/supergit/src/files.rs
blob: 681b8877256f517d359238b9195fcaed82dcb22c (plain)
1
2
3
4
5
6
7
pub type FileId = usize;

/// A file to have ever existed in a git repo
pub struct File {
    id: FileId,
}