From 6fce1e77504b0d41c30671aa33be3afbb6ba1687 Mon Sep 17 00:00:00 2001 From: Timur Ismagilov Date: Sat, 7 Sep 2024 22:39:40 +0300 Subject: [PATCH] Reformat some imports --- internal/files/files.go | 5 +++-- internal/tree/tree.go | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/internal/files/files.go b/internal/files/files.go index bb82cff..e6fa383 100644 --- a/internal/files/files.go +++ b/internal/files/files.go @@ -2,11 +2,12 @@ package files import ( - "github.com/bouncepaw/mycorrhiza/internal/cfg" - "github.com/bouncepaw/mycorrhiza/web/static" "io" "os" "path/filepath" + + "github.com/bouncepaw/mycorrhiza/internal/cfg" + "github.com/bouncepaw/mycorrhiza/web/static" ) var paths struct { diff --git a/internal/tree/tree.go b/internal/tree/tree.go index 6dc171e..44f4dac 100644 --- a/internal/tree/tree.go +++ b/internal/tree/tree.go @@ -2,13 +2,14 @@ package tree import ( "fmt" - "github.com/bouncepaw/mycorrhiza/internal/hyphae" - "github.com/bouncepaw/mycorrhiza/util" "html/template" "io" "path" "sort" "strings" + + "github.com/bouncepaw/mycorrhiza/internal/hyphae" + "github.com/bouncepaw/mycorrhiza/util" ) // Tree returns the subhypha matrix as HTML and names of the next and previous hyphae (or empty strings).