summary refs log tree commit diff stats
path: root/pkgs/by-name/ba/back
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/ba/back')
-rw-r--r--pkgs/by-name/ba/back/README.md1
-rw-r--r--pkgs/by-name/ba/back/flake.nix1
-rw-r--r--pkgs/by-name/ba/back/src/issues/mod.rs4
3 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/by-name/ba/back/README.md b/pkgs/by-name/ba/back/README.md
index 350abee..59f9d9a 100644
--- a/pkgs/by-name/ba/back/README.md
+++ b/pkgs/by-name/ba/back/README.md
@@ -16,6 +16,7 @@ If not, see <https://www.gnu.org/licenses/agpl.txt>.
 > An extremely simple git issue tracking system. Inspired by tvix's panettone.
 
 ## Usage
+
 Currently `back` only visualizes a `git-bug` repository. As such it takes exactly one
 argument, being the repository to visualize.
 The server is than started at `http://127.0.0.1:8000` and provides access to the issues
diff --git a/pkgs/by-name/ba/back/flake.nix b/pkgs/by-name/ba/back/flake.nix
index 2b67207..b7e158e 100644
--- a/pkgs/by-name/ba/back/flake.nix
+++ b/pkgs/by-name/ba/back/flake.nix
@@ -8,7 +8,6 @@
 #
 # You should have received a copy of the License along with this program.
 # If not, see <https://www.gnu.org/licenses/agpl.txt>.
-
 {
   description = "An extremely simple git issue tracking system. Inspired by tvix's panettone";
 
diff --git a/pkgs/by-name/ba/back/src/issues/mod.rs b/pkgs/by-name/ba/back/src/issues/mod.rs
index e2af5de..df3e57e 100644
--- a/pkgs/by-name/ba/back/src/issues/mod.rs
+++ b/pkgs/by-name/ba/back/src/issues/mod.rs
@@ -12,8 +12,8 @@
 use std::path::Path;
 
 use crate::issues::issue::{Issue, Status};
-use issue_show::BackPrefix;
 use gix::{refs::Target, Repository};
+use issue_show::BackPrefix;
 use rocket::{
     get,
     response::content::{RawCss, RawHtml},
@@ -21,9 +21,9 @@ use rocket::{
 
 use crate::REPOSITORY;
 
+mod format;
 mod issue;
 mod issue_show;
-mod format;
 
 #[get("/style.css")]
 pub fn styles() -> RawCss<String> {