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).