diff options
author | 2024-06-27 22:36:40 +0300 | |
---|---|---|
committer | 2024-06-27 22:36:40 +0300 | |
commit | f7e25c6d0c6e99f00131cc7837f02ff62913ca6f (patch) | |
tree | 00872a693579389b4a1c74876cfb707706060acb /pkg/app/handler/user/maintainers.templ | |
parent | about: add link to commit when showing soko's current commit id (diff) | |
download | soko-f7e25c6d0c6e99f00131cc7837f02ff62913ca6f.tar.gz soko-f7e25c6d0c6e99f00131cc7837f02ff62913ca6f.tar.bz2 soko-f7e25c6d0c6e99f00131cc7837f02ff62913ca6f.zip |
templ: fmt imports
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'pkg/app/handler/user/maintainers.templ')
-rw-r--r-- | pkg/app/handler/user/maintainers.templ | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/pkg/app/handler/user/maintainers.templ b/pkg/app/handler/user/maintainers.templ index a12c913..10d4b9c 100644 --- a/pkg/app/handler/user/maintainers.templ +++ b/pkg/app/handler/user/maintainers.templ @@ -1,13 +1,15 @@ package user -import "encoding/base64" -import "encoding/json" -import "net/http" -import "time" -import "soko/pkg/app/utils" -import "soko/pkg/models" -import "slices" -import "soko/pkg/database" +import ( + "encoding/base64" + "encoding/json" + "net/http" + "slices" + "soko/pkg/app/utils" + "soko/pkg/database" + "soko/pkg/models" + "time" +) func splitAllProjects() [][]models.Project { var projects []models.Project |