aboutsummaryrefslogtreecommitdiff
path: root/src/repo.rs
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-01-23 22:29:46 +0100
committerKatharina Fey <kookie@spacekookie.de>2020-01-23 22:29:46 +0100
commit5db4c57b0360f6d6f9d6553d9b438a804ad441ae (patch)
tree8c9b91df4e6bafca0fc058613cd8eddd788f0a95 /src/repo.rs
parent5e16c6400307d93e90ced300efb3ee4eb76c0524 (diff)
Updating to actix 2.0.0 and adding 404 handlerfn-verify-9324832
Diffstat (limited to '')
-rw-r--r--src/repo.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/repo.rs b/src/repo.rs
index 3dae808..ca1f889 100644
--- a/src/repo.rs
+++ b/src/repo.rs
@@ -1,16 +1,6 @@
use git2::{Commit, Error, Repository as Backend};
use std::collections::HashSet;
-// /// Represents a repository on disk
-// struct Repository {
-// /// We need to be able to query libgit2 later
-// fs_path: String,
-// /// The project name (last path element)
-// name: String,
-// /// The rope path excluding the name
-// path: Vec<String>,
-// }
-
/// A structure that represents an existing bare repo on disk
pub struct Repository {
inner: Backend,