aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-06-22 16:33:28 +0200
committerKatharina Fey <kookie@spacekookie.de>2020-06-22 16:33:28 +0200
commita0dca8186bdef76e09e9c388d7f85839e85ce8db (patch)
treee10257f724b01ddc9b8244c9b2429921612b6856 /src/main.rs
parent367cb0b2358be04d18dfea963d1c42044893e3b4 (diff)
git: refactoring git module to have a unified actions API
Diffstat (limited to '')
-rw-r--r--src/main.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/main.rs b/src/main.rs
index 7e589ec..a0d6dce 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -14,12 +14,6 @@ async fn main() -> io::Result<()> {
env_logger::init();
let root = PathBuf::new();
- let repo = git::repo::Repo::new(".");
- let commits = git::log::create_commit_log(
- "84a9a0ccee713e26a28ff5e54ea3776085d93b5f".into(),
- &repo.inner,
- );
-
HttpServer::new(move || {
App::new()
.service(fs::Files::new("/static", root.join("static")))