From dfb5714045e99a09bf3f67890ae3cdeab47058b3 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Thu, 26 Dec 2024 17:50:54 +0100 Subject: feat(pkgs/back): Rewrite the `git-bug` interface code The previous code was more or less reverse engineered, whilst this code is based on the actually git-bug source code. This improves the whole issue and operation handling immensely and also makes the code better maintainable. Furthermore, it also adds support for the operations that had not already used in `vhack.eu/nixos-server.git`. --- pkgs/by-name/ba/back/src/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'pkgs/by-name/ba/back/src/main.rs') diff --git a/pkgs/by-name/ba/back/src/main.rs b/pkgs/by-name/ba/back/src/main.rs index e8f36d2..009bdb6 100644 --- a/pkgs/by-name/ba/back/src/main.rs +++ b/pkgs/by-name/ba/back/src/main.rs @@ -18,6 +18,7 @@ use crate::web::{closed, open, show_issue, styles}; mod cli; pub mod config; mod error; +pub mod git_bug; mod web; #[rocket::main] -- cgit 1.4.1