From 614f15e1f1884c40d6b557093ecba45ab05445b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Bouzour=C3=A8ne?= Date: Sun, 11 May 2025 16:21:38 +0200 Subject: [PATCH] Go licenses as markdown template --- README.md | 4 +- controllers/misc.go | 23 +- go.mod | 1 + go.sum | 2 + helpers/embed.go | 25 + licences/template.html | 29 - .../fetch_licenses.sh | 4 +- {licences => licenses}/install_tool.sh | 0 licenses/template.md | 15 + main.go | 8 +- views/licences.html => static/licenses.md | 2520 +++++++---------- views/licenses.html | 20 + 12 files changed, 1064 insertions(+), 1587 deletions(-) create mode 100644 helpers/embed.go delete mode 100644 licences/template.html rename licences/fetch_licences.sh => licenses/fetch_licenses.sh (70%) rename {licences => licenses}/install_tool.sh (100%) create mode 100644 licenses/template.md rename views/licences.html => static/licenses.md (85%) create mode 100644 views/licenses.html diff --git a/README.md b/README.md index 0f1e3d9..2884e52 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,11 @@ Gestion des membres & sympathisants pour le POP Vaud ## Récupérer les licences des modules Go Installer l'utilitaire (si pas déjà fait) ```bash -./licences/install_tool.sh +./licenses/install_tool.sh ``` Générer le fichier de licences (à faire avant build si nouveau module) ```bash -./licences/fetch_licences.sh +./licenses/fetch_licenses.sh ``` ## Générer une build diff --git a/controllers/misc.go b/controllers/misc.go index b9ccc7c..7494154 100644 --- a/controllers/misc.go +++ b/controllers/misc.go @@ -1,10 +1,12 @@ package controllers import ( + "bytes" "fmt" "git.readonly.ch/bouzoure/pop-camarades/helpers" "github.com/gofiber/fiber/v2" + "github.com/yuin/goldmark" ) func SetColorMode(c *fiber.Ctx) error { @@ -30,8 +32,25 @@ func SetColorMode(c *fiber.Ctx) error { )) } -func Licences(c *fiber.Ctx) error { - return c.Render("licences", fiber.Map{ +func Licenses(c *fiber.Ctx) error { + staticFS, err := helpers.GetEmbeddedFS("static") + if err != nil { + return err + } + + source, err := staticFS.ReadFile("static/licenses.md") + if err != nil { + return err + } + + var buf bytes.Buffer + err = goldmark.Convert(source, &buf) + if err != nil { + return err + } + + return c.Render("licenses", fiber.Map{ "PageTitle": "Licences", + "Markdown": buf.String(), }) } diff --git a/go.mod b/go.mod index a31284f..fd1f6dd 100644 --- a/go.mod +++ b/go.mod @@ -65,6 +65,7 @@ require ( github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasthttp v1.61.0 // indirect github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect + github.com/yuin/goldmark v1.7.11 // indirect go.opencensus.io v0.24.0 // indirect golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 // indirect golang.org/x/net v0.39.0 // indirect diff --git a/go.sum b/go.sum index b7edd47..90f8bd4 100644 --- a/go.sum +++ b/go.sum @@ -223,6 +223,8 @@ github.com/xyproto/randomstring v1.0.5 h1:YtlWPoRdgMu3NZtP45drfy1GKoojuR7hmRcnhZ github.com/xyproto/randomstring v1.0.5/go.mod h1:rgmS5DeNXLivK7YprL0pY+lTuhNQW3iGxZ18UQApw/E= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.7.11 h1:ZCxLyDMtz0nT2HFfsYG8WZ47Trip2+JyLysKcMYE5bo= +github.com/yuin/goldmark v1.7.11/go.mod h1:ip/1k0VRfGynBgxOz0yCqHrbZXhcjxyuS66Brc7iBKg= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= diff --git a/helpers/embed.go b/helpers/embed.go new file mode 100644 index 0000000..c3de901 --- /dev/null +++ b/helpers/embed.go @@ -0,0 +1,25 @@ +package helpers + +import ( + "embed" + "fmt" + "strings" +) + +var embeddedFS = make(map[string]*embed.FS) + +func AddEmbeddedFS(key string, fs *embed.FS) { + embeddedFS[key] = fs +} + +func GetEmbeddedFS(key string) (*embed.FS, error) { + var fs *embed.FS + + for k, v := range embeddedFS { + if strings.EqualFold(k, key) { + return v, nil + } + } + + return fs, fmt.Errorf("embedded filesystem not found") +} diff --git a/licences/template.html b/licences/template.html deleted file mode 100644 index 30f8af8..0000000 --- a/licences/template.html +++ /dev/null @@ -1,29 +0,0 @@ -{% extends "layouts/main.html" %} - -{% block main %} -
- {{ range . }} -
- - {{ .Name }} - -
    -
  • - Version: {{ .Version }} -
  • -
  • - License: - {{ if ne .LicenseURL "Unknown" }} - - {{ .LicenseName }} - - {{ else }} - {{ .LicenseName }} - {{ end }} -
  • -
-
{{ .LicenseText }}
-
- {{ end }} -
-{% endblock %} \ No newline at end of file diff --git a/licences/fetch_licences.sh b/licenses/fetch_licenses.sh similarity index 70% rename from licences/fetch_licences.sh rename to licenses/fetch_licenses.sh index 70f4faf..38f5a9a 100755 --- a/licences/fetch_licences.sh +++ b/licenses/fetch_licenses.sh @@ -1,8 +1,8 @@ #!/bin/bash SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd) -TPL_LOCATION="$SCRIPT_DIR/template.html" -STATIC_LOCATION="$SCRIPT_DIR/../views/licences.html" +TPL_LOCATION="$SCRIPT_DIR/template.md" +STATIC_LOCATION="$SCRIPT_DIR/../static/licenses.md" PROJECT_URL="git.readonly.ch/bouzoure/pop-camarades" go-licenses report "$PROJECT_URL" --template "$TPL_LOCATION" > "$STATIC_LOCATION" diff --git a/licences/install_tool.sh b/licenses/install_tool.sh similarity index 100% rename from licences/install_tool.sh rename to licenses/install_tool.sh diff --git a/licenses/template.md b/licenses/template.md new file mode 100644 index 0000000..0ae7093 --- /dev/null +++ b/licenses/template.md @@ -0,0 +1,15 @@ +{{ range . }} +## {{ .Name }} + +* Name: {{ .Name }} +* Version: {{ .Version }} +{{ if ne .LicenseURL "Unknown" }} +* License: [{{ .LicenseName }}]({{ .LicenseURL }}) +{{ else }} +* License: {{ .LicenseName }} +{{ end }} + +``` +{{ .LicenseText }} +``` +{{ end }} diff --git a/main.go b/main.go index fe2b952..9c6bcdf 100644 --- a/main.go +++ b/main.go @@ -28,6 +28,10 @@ var embedViews embed.FS func main() { log := helpers.GetLogger() + // Add embedded filesystems to shared state + helpers.AddEmbeddedFS("static", &embedStatic) + helpers.AddEmbeddedFS("views", &embedViews) + // Fetch app config config, err := helpers.GetConfig() if err != nil { @@ -109,8 +113,8 @@ func main() { app.Post("/set-color-mode", controllers.SetColorMode) // Licences page - app.Use("/licences", middlewares.TemplatesMiddleware) - app.Get("/licences", controllers.Licences) + app.Use("/licenses", middlewares.TemplatesMiddleware) + app.Get("/licenses", controllers.Licenses) // Security middlewares app.Use(middlewares.SavedSessionMiddleware) diff --git a/views/licences.html b/static/licenses.md similarity index 85% rename from views/licences.html rename to static/licenses.md index f78e6c0..9fb3482 100644 --- a/views/licences.html +++ b/static/licenses.md @@ -1,26 +1,14 @@ -{% extends "layouts/main.html" %} -{% block main %} -
- -
- - git.readonly.ch/bouzoure/pop-camarades - - -
GNU GENERAL PUBLIC LICENSE
+## git.readonly.ch/bouzoure/pop-camarades
+
+* Name: git.readonly.ch/bouzoure/pop-camarades
+* Version: Unknown
+
+* License: [GPL-3.0](https://git.readonly.ch/bouzoure/pop-camarades/src/HEAD/LICENSE)
+
+
+```
+GNU GENERAL PUBLIC LICENSE
                        Version 3, 29 June 2007
 
  Copyright (C) 2007 Free Software Foundation, Inc. 
@@ -694,27 +682,19 @@ may consider it more useful to permit linking proprietary applications with
 the library.  If this is what you want to do, use the GNU Lesser General
 Public License instead of this License.  But first, please read
 .
-
-
- -
- - github.com/andybalholm/brotli - -
    -
  • - Version: v1.1.1 -
  • -
  • - License: - - - MIT - - -
  • -
-
Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
+
+```
+
+## github.com/andybalholm/brotli
+
+* Name: github.com/andybalholm/brotli
+* Version: v1.1.1
+
+* License: [MIT](https://github.com/andybalholm/brotli/blob/v1.1.1/LICENSE)
+
+
+```
+Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
@@ -733,27 +713,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 THE SOFTWARE.
-
-
- -
- - github.com/aymanbagabas/go-osc52/v2 - -
    -
  • - Version: v2.0.1 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/aymanbagabas/go-osc52/v2
+
+* Name: github.com/aymanbagabas/go-osc52/v2
+* Version: v2.0.1
+
+* License: [MIT](https://github.com/aymanbagabas/go-osc52/blob/v2.0.1/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2022 Ayman Bagabas
 
@@ -774,27 +746,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/boombuler/barcode - -
    -
  • - Version: v1.0.2 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+
+```
+
+## github.com/boombuler/barcode
+
+* Name: github.com/boombuler/barcode
+* Version: v1.0.2
+
+* License: [MIT](https://github.com/boombuler/barcode/blob/v1.0.2/LICENSE)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2014 Florian Sundermann
 
@@ -815,27 +779,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/brianvoe/gofakeit/v7 - -
    -
  • - Version: v7.2.1 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+
+```
+
+## github.com/brianvoe/gofakeit/v7
+
+* Name: github.com/brianvoe/gofakeit/v7
+* Version: v7.2.1
+
+* License: [MIT](https://github.com/brianvoe/gofakeit/blob/v7.2.1/LICENSE.txt)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) [year] [fullname]
 
@@ -854,27 +810,19 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
- -
- - github.com/cespare/xxhash - -
    -
  • - Version: v1.1.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
Copyright (c) 2016 Caleb Spare
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+```
+
+## github.com/cespare/xxhash
+
+* Name: github.com/cespare/xxhash
+* Version: v1.1.0
+
+* License: [MIT](https://github.com/cespare/xxhash/blob/v1.1.0/LICENSE.txt)
+
+
+```
+Copyright (c) 2016 Caleb Spare
 
 MIT License
 
@@ -896,27 +844,19 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
- -
- - github.com/cespare/xxhash/v2 - -
    -
  • - Version: v2.3.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
Copyright (c) 2016 Caleb Spare
+
+```
+
+## github.com/cespare/xxhash/v2
+
+* Name: github.com/cespare/xxhash/v2
+* Version: v2.3.0
+
+* License: [MIT](https://github.com/cespare/xxhash/blob/v2.3.0/LICENSE.txt)
+
+
+```
+Copyright (c) 2016 Caleb Spare
 
 MIT License
 
@@ -938,27 +878,19 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
- -
- - github.com/charmbracelet/colorprofile - -
    -
  • - Version: v0.3.1 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/charmbracelet/colorprofile
+
+* Name: github.com/charmbracelet/colorprofile
+* Version: v0.3.1
+
+* License: [MIT](https://github.com/charmbracelet/colorprofile/blob/v0.3.1/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2020-2024 Charmbracelet, Inc
 
@@ -979,27 +911,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/charmbracelet/lipgloss - -
    -
  • - Version: v1.1.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/charmbracelet/lipgloss
+
+* Name: github.com/charmbracelet/lipgloss
+* Version: v1.1.0
+
+* License: [MIT](https://github.com/charmbracelet/lipgloss/blob/v1.1.0/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2021-2023 Charmbracelet, Inc
 
@@ -1020,27 +944,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/charmbracelet/log - -
    -
  • - Version: v0.4.1 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/charmbracelet/log
+
+* Name: github.com/charmbracelet/log
+* Version: v0.4.1
+
+* License: [MIT](https://github.com/charmbracelet/log/blob/v0.4.1/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2022-2023 Charmbracelet, Inc
 
@@ -1061,27 +977,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/charmbracelet/x/ansi - -
    -
  • - Version: v0.8.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/charmbracelet/x/ansi
+
+* Name: github.com/charmbracelet/x/ansi
+* Version: v0.8.0
+
+* License: [MIT](https://github.com/charmbracelet/x/blob/ansi/v0.8.0/ansi/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2023 Charmbracelet, Inc.
 
@@ -1102,27 +1010,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/charmbracelet/x/cellbuf - -
    -
  • - Version: v0.0.13 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/charmbracelet/x/cellbuf
+
+* Name: github.com/charmbracelet/x/cellbuf
+* Version: v0.0.13
+
+* License: [MIT](https://github.com/charmbracelet/x/blob/cellbuf/v0.0.13/cellbuf/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2023 Charmbracelet, Inc.
 
@@ -1143,27 +1043,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/charmbracelet/x/term - -
    -
  • - Version: v0.2.1 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/charmbracelet/x/term
+
+* Name: github.com/charmbracelet/x/term
+* Version: v0.2.1
+
+* License: [MIT](https://github.com/charmbracelet/x/blob/term/v0.2.1/term/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2023 Charmbracelet, Inc.
 
@@ -1184,27 +1076,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/dgraph-io/badger/v3 - - -
                                 Apache License
+
+```
+
+## github.com/dgraph-io/badger/v3
+
+* Name: github.com/dgraph-io/badger/v3
+* Version: v3.2103.5
+
+* License: [Apache-2.0](https://github.com/dgraph-io/badger/blob/v3.2103.5/LICENSE)
+
+
+```
+                                 Apache License
                            Version 2.0, January 2004
                         http://www.apache.org/licenses/
 
@@ -1380,27 +1264,19 @@ SOFTWARE.
       of your accepting any such warranty or additional liability.
 
    END OF TERMS AND CONDITIONS
-
-
- -
- - github.com/dgraph-io/ristretto - - -
                                 Apache License
+
+```
+
+## github.com/dgraph-io/ristretto
+
+* Name: github.com/dgraph-io/ristretto
+* Version: v0.2.0
+
+* License: [Apache-2.0](https://github.com/dgraph-io/ristretto/blob/v0.2.0/LICENSE)
+
+
+```
+                                 Apache License
                            Version 2.0, January 2004
                         http://www.apache.org/licenses/
 
@@ -1576,27 +1452,19 @@ SOFTWARE.
       of your accepting any such warranty or additional liability.
 
    END OF TERMS AND CONDITIONS
-
-
- -
- - github.com/dgraph-io/ristretto/z - -
    -
  • - Version: v0.2.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
bbloom.go
+
+```
+
+## github.com/dgraph-io/ristretto/z
+
+* Name: github.com/dgraph-io/ristretto/z
+* Version: v0.2.0
+
+* License: [MIT](https://github.com/dgraph-io/ristretto/blob/v0.2.0/z/LICENSE)
+
+
+```
+bbloom.go
 
 // The MIT License (MIT)
 // Copyright (c) 2014 Andreas Briese, eduToolbox@Bri-C GmbH, Sarstedt
@@ -1660,27 +1528,19 @@ Modifications:
  * limitations under the License.
  */
 
-
-
- -
- - github.com/dustin/go-humanize - -
    -
  • - Version: v1.0.1 -
  • -
  • - License: - - - MIT - - -
  • -
-
Copyright (c) 2005-2008  Dustin Sallings 
+
+```
+
+## github.com/dustin/go-humanize
+
+* Name: github.com/dustin/go-humanize
+* Version: v1.0.1
+
+* License: [MIT](https://github.com/dustin/go-humanize/blob/v1.0.1/LICENSE)
+
+
+```
+Copyright (c) 2005-2008  Dustin Sallings 
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
@@ -1701,27 +1561,19 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
 
 
-
-
- -
- - github.com/flosch/pongo2/v6 - -
    -
  • - Version: v6.0.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+
+```
+
+## github.com/flosch/pongo2/v6
+
+* Name: github.com/flosch/pongo2/v6
+* Version: v6.0.0
+
+* License: [MIT](https://github.com/flosch/pongo2/blob/v6.0.0/LICENSE)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2013-2022 Florian Schlachter
 
@@ -1741,27 +1593,19 @@ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
- -
- - github.com/gabriel-vasile/mimetype - -
    -
  • - Version: v1.4.9 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/gabriel-vasile/mimetype
+
+* Name: github.com/gabriel-vasile/mimetype
+* Version: v1.4.9
+
+* License: [MIT](https://github.com/gabriel-vasile/mimetype/blob/v1.4.9/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2018 Gabriel Vasile
 
@@ -1782,27 +1626,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/glebarez/go-sqlite - - -
Copyright (c) 2017 The Sqlite Authors. All rights reserved.
+
+```
+
+## github.com/glebarez/go-sqlite
+
+* Name: github.com/glebarez/go-sqlite
+* Version: v1.22.0
+
+* License: [BSD-3-Clause](https://github.com/glebarez/go-sqlite/blob/v1.22.0/LICENSE)
+
+
+```
+Copyright (c) 2017 The Sqlite Authors. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
@@ -1828,27 +1664,19 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - github.com/glebarez/sqlite - -
    -
  • - Version: v1.11.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+
+```
+
+## github.com/glebarez/sqlite
+
+* Name: github.com/glebarez/sqlite
+* Version: v1.11.0
+
+* License: [MIT](https://github.com/glebarez/sqlite/blob/v1.11.0/License)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2013-NOW  Jinzhu 
 
@@ -1869,27 +1697,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 THE SOFTWARE.
-
-
- -
- - github.com/go-logfmt/logfmt - -
    -
  • - Version: v0.6.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+
+```
+
+## github.com/go-logfmt/logfmt
+
+* Name: github.com/go-logfmt/logfmt
+* Version: v0.6.0
+
+* License: [MIT](https://github.com/go-logfmt/logfmt/blob/v0.6.0/LICENSE)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2015 go-logfmt
 
@@ -1911,67 +1731,19 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
 
-
-
- -
- - github.com/go-playground/locales - -
    -
  • - Version: v0.14.1 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
 
-Copyright (c) 2016 Go Playground
+```
 
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
+## github.com/go-playground/locales
 
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
+* Name: github.com/go-playground/locales
+* Version: v0.14.1
 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
- -
- - github.com/go-playground/universal-translator - -
    -
  • - Version: v0.18.1 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+* License: [MIT](https://github.com/go-playground/locales/blob/v0.14.1/LICENSE)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2016 Go Playground
 
@@ -1992,27 +1764,51 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/go-playground/validator/v10 - -
    -
  • - Version: v10.26.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+```
+
+## github.com/go-playground/universal-translator
+
+* Name: github.com/go-playground/universal-translator
+* Version: v0.18.1
+
+* License: [MIT](https://github.com/go-playground/universal-translator/blob/v0.18.1/LICENSE)
+
+
+```
+The MIT License (MIT)
+
+Copyright (c) 2016 Go Playground
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+```
+
+## github.com/go-playground/validator/v10
+
+* Name: github.com/go-playground/validator/v10
+* Version: v10.26.0
+
+* License: [MIT](https://github.com/go-playground/validator/blob/v10.26.0/LICENSE)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2015 Dean Karn
 
@@ -2034,68 +1830,52 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
 
-
-
- -
- - github.com/gofiber/fiber/v2 - -
    -
  • - Version: v2.52.6 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
-
-Copyright (c) 2019-present Fenny and Contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-
- -
- - github.com/gofiber/fiber/v2/internal/schema - - -
Copyright (c) 2012 Rodrigo Moraes. All rights reserved.
+
+```
+
+## github.com/gofiber/fiber/v2
+
+* Name: github.com/gofiber/fiber/v2
+* Version: v2.52.6
+
+* License: [MIT](https://github.com/gofiber/fiber/blob/v2.52.6/LICENSE)
+
+
+```
+MIT License
+
+Copyright (c) 2019-present Fenny and Contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+```
+
+## github.com/gofiber/fiber/v2/internal/schema
+
+* Name: github.com/gofiber/fiber/v2/internal/schema
+* Version: v2.52.6
+
+* License: [BSD-3-Clause](https://github.com/gofiber/fiber/blob/v2.52.6/internal/schema/LICENSE)
+
+
+```
+Copyright (c) 2012 Rodrigo Moraes. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -2122,27 +1902,19 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - github.com/gofiber/helmet/v2 - -
    -
  • - Version: v2.2.26 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/gofiber/helmet/v2
+
+* Name: github.com/gofiber/helmet/v2
+* Version: v2.2.26
+
+* License: [MIT](https://github.com/gofiber/helmet/blob/v2.2.26/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2020 Fiber
 
@@ -2163,27 +1935,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/gofiber/storage/badger/v2 - -
    -
  • - Version: v2.0.1 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/gofiber/storage/badger/v2
+
+* Name: github.com/gofiber/storage/badger/v2
+* Version: v2.0.1
+
+* License: [MIT](https://github.com/gofiber/storage/blob/badger/v2.0.1/badger/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2020 Fiber
 
@@ -2204,27 +1968,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/gofiber/template - -
    -
  • - Version: v1.8.3 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/gofiber/template
+
+* Name: github.com/gofiber/template
+* Version: v1.8.3
+
+* License: [MIT](https://github.com/gofiber/template/blob/v1.8.3/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2020 Fiber
 
@@ -2245,27 +2001,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/gofiber/template/django/v3 - -
    -
  • - Version: v3.1.13 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/gofiber/template/django/v3
+
+* Name: github.com/gofiber/template/django/v3
+* Version: v3.1.13
+
+* License: [MIT](https://github.com/gofiber/template/blob/django/v3.1.13/django/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2020 Fiber
 
@@ -2286,27 +2034,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/gofiber/utils - -
    -
  • - Version: v1.1.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/gofiber/utils
+
+* Name: github.com/gofiber/utils
+* Version: v1.1.0
+
+* License: [MIT](https://github.com/gofiber/utils/blob/v1.1.0/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2020 Fiber
 
@@ -2327,27 +2067,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/gofiber/utils/v2 - -
    -
  • - Version: v2.0.0-beta.8 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/gofiber/utils/v2
+
+* Name: github.com/gofiber/utils/v2
+* Version: v2.0.0-beta.8
+
+* License: [MIT](https://github.com/gofiber/utils/blob/v2.0.0-beta.8/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2020-present Fenny and Contributors
 
@@ -2368,27 +2100,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/gogo/protobuf/proto - - -
Copyright (c) 2013, The GoGo Authors. All rights reserved.
+
+```
+
+## github.com/gogo/protobuf/proto
+
+* Name: github.com/gogo/protobuf/proto
+* Version: v1.3.2
+
+* License: [BSD-3-Clause](https://github.com/gogo/protobuf/blob/v1.3.2/LICENSE)
+
+
+```
+Copyright (c) 2013, The GoGo Authors. All rights reserved.
 
 Protocol Buffers for Go with Gadgets
 
@@ -2423,27 +2147,19 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-
-
- -
- - github.com/golang/groupcache/lru - -
    -
  • - Version: v0.0.0-20241129210726-2c02b8208cf8 -
  • -
  • - License: - - - Apache-2.0 - - -
  • -
-
Apache License
+
+```
+
+## github.com/golang/groupcache/lru
+
+* Name: github.com/golang/groupcache/lru
+* Version: v0.0.0-20241129210726-2c02b8208cf8
+
+* License: [Apache-2.0](https://github.com/golang/groupcache/blob/2c02b8208cf8/LICENSE)
+
+
+```
+Apache License
 Version 2.0, January 2004
 http://www.apache.org/licenses/
 
@@ -2634,27 +2350,19 @@ third-party archives.
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
-
-
- -
- - github.com/golang/protobuf/proto - - -
Copyright 2010 The Go Authors.  All rights reserved.
+
+```
+
+## github.com/golang/protobuf/proto
+
+* Name: github.com/golang/protobuf/proto
+* Version: v1.5.4
+
+* License: [BSD-3-Clause](https://github.com/golang/protobuf/blob/v1.5.4/LICENSE)
+
+
+```
+Copyright 2010 The Go Authors.  All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -2682,27 +2390,19 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-
-
- -
- - github.com/golang/snappy - - -
Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.
+
+```
+
+## github.com/golang/snappy
+
+* Name: github.com/golang/snappy
+* Version: v1.0.0
+
+* License: [BSD-3-Clause](https://github.com/golang/snappy/blob/v1.0.0/LICENSE)
+
+
+```
+Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -2729,27 +2429,19 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - github.com/golobby/cast - -
    -
  • - Version: v1.3.3 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/golobby/cast
+
+* Name: github.com/golobby/cast
+* Version: v1.3.3
+
+* License: [MIT](https://github.com/golobby/cast/blob/v1.3.3/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2019 GoLobby
 
@@ -2770,27 +2462,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/golobby/dotenv - -
    -
  • - Version: v1.3.2 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/golobby/dotenv
+
+* Name: github.com/golobby/dotenv
+* Version: v1.3.2
+
+* License: [MIT](https://github.com/golobby/dotenv/blob/v1.3.2/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2021 GoLobby
 
@@ -2811,27 +2495,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/google/flatbuffers/go - - -
+
+```
+
+## github.com/google/flatbuffers/go
+
+* Name: github.com/google/flatbuffers/go
+* Version: v25.2.10
+
+* License: [Apache-2.0](https://github.com/google/flatbuffers/blob/v25.2.10/LICENSE)
+
+
+```
+
                                  Apache License
                            Version 2.0, January 2004
                         http://www.apache.org/licenses/
@@ -3033,27 +2709,19 @@ SOFTWARE.
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
-
-
- -
- - github.com/google/uuid - - -
Copyright (c) 2009,2014 Google Inc. All rights reserved.
+
+```
+
+## github.com/google/uuid
+
+* Name: github.com/google/uuid
+* Version: v1.6.0
+
+* License: [BSD-3-Clause](https://github.com/google/uuid/blob/v1.6.0/LICENSE)
+
+
+```
+Copyright (c) 2009,2014 Google Inc. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -3080,27 +2748,19 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - github.com/jinzhu/inflection - -
    -
  • - Version: v1.0.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+
+```
+
+## github.com/jinzhu/inflection
+
+* Name: github.com/jinzhu/inflection
+* Version: v1.0.0
+
+* License: [MIT](https://github.com/jinzhu/inflection/blob/v1.0.0/LICENSE)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2015 - Jinzhu
 
@@ -3121,27 +2781,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/jinzhu/now - -
    -
  • - Version: v1.1.5 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+
+```
+
+## github.com/jinzhu/now
+
+* Name: github.com/jinzhu/now
+* Version: v1.1.5
+
+* License: [MIT](https://github.com/jinzhu/now/blob/v1.1.5/License)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2013-NOW  Jinzhu 
 
@@ -3162,27 +2814,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 THE SOFTWARE.
-
-
- -
- - github.com/klauspost/compress - - -
Copyright (c) 2012 The Go Authors. All rights reserved.
+
+```
+
+## github.com/klauspost/compress
+
+* Name: github.com/klauspost/compress
+* Version: v1.18.0
+
+* License: [Apache-2.0](https://github.com/klauspost/compress/blob/v1.18.0/LICENSE)
+
+
+```
+Copyright (c) 2012 The Go Authors. All rights reserved.
 Copyright (c) 2019 Klaus Post. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
@@ -3486,27 +3130,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
- -
- - github.com/klauspost/compress/internal/snapref - - -
Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.
+
+```
+
+## github.com/klauspost/compress/internal/snapref
+
+* Name: github.com/klauspost/compress/internal/snapref
+* Version: v1.18.0
+
+* License: [BSD-3-Clause](https://github.com/klauspost/compress/blob/v1.18.0/internal/snapref/LICENSE)
+
+
+```
+Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -3533,27 +3169,19 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - github.com/klauspost/compress/zstd/internal/xxhash - -
    -
  • - Version: v1.18.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
Copyright (c) 2016 Caleb Spare
+
+```
+
+## github.com/klauspost/compress/zstd/internal/xxhash
+
+* Name: github.com/klauspost/compress/zstd/internal/xxhash
+* Version: v1.18.0
+
+* License: [MIT](https://github.com/klauspost/compress/blob/v1.18.0/zstd/internal/xxhash/LICENSE.txt)
+
+
+```
+Copyright (c) 2016 Caleb Spare
 
 MIT License
 
@@ -3575,27 +3203,19 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
- -
- - github.com/leodido/go-urn - -
    -
  • - Version: v1.4.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/leodido/go-urn
+
+* Name: github.com/leodido/go-urn
+* Version: v1.4.0
+
+* License: [MIT](https://github.com/leodido/go-urn/blob/v1.4.0/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2018 Leonardo Di Donato
 
@@ -3616,54 +3236,38 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/lucasb-eyer/go-colorful - -
    -
  • - Version: v1.2.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
Copyright (c) 2013 Lucas Beyer
+
+```
+
+## github.com/lucasb-eyer/go-colorful
+
+* Name: github.com/lucasb-eyer/go-colorful
+* Version: v1.2.0
+
+* License: [MIT](https://github.com/lucasb-eyer/go-colorful/blob/v1.2.0/LICENSE)
+
+
+```
+Copyright (c) 2013 Lucas Beyer
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 
 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
- -
- - github.com/mattn/go-colorable - -
    -
  • - Version: v0.1.14 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+
+```
+
+## github.com/mattn/go-colorable
+
+* Name: github.com/mattn/go-colorable
+* Version: v0.1.14
+
+* License: [MIT](https://github.com/mattn/go-colorable/blob/v0.1.14/LICENSE)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2016 Yasuhiro Matsumoto
 
@@ -3684,27 +3288,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/mattn/go-isatty - -
    -
  • - Version: v0.0.20 -
  • -
  • - License: - - - MIT - - -
  • -
-
Copyright (c) Yasuhiro MATSUMOTO 
+
+```
+
+## github.com/mattn/go-isatty
+
+* Name: github.com/mattn/go-isatty
+* Version: v0.0.20
+
+* License: [MIT](https://github.com/mattn/go-isatty/blob/v0.0.20/LICENSE)
+
+
+```
+Copyright (c) Yasuhiro MATSUMOTO 
 
 MIT License (Expat)
 
@@ -3713,27 +3309,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
- -
- - github.com/mattn/go-runewidth - -
    -
  • - Version: v0.0.16 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+
+```
+
+## github.com/mattn/go-runewidth
+
+* Name: github.com/mattn/go-runewidth
+* Version: v0.0.16
+
+* License: [MIT](https://github.com/mattn/go-runewidth/blob/v0.0.16/LICENSE)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2016 Yasuhiro Matsumoto
 
@@ -3754,27 +3342,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/muesli/termenv - -
    -
  • - Version: v0.16.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/muesli/termenv
+
+* Name: github.com/muesli/termenv
+* Version: v0.16.0
+
+* License: [MIT](https://github.com/muesli/termenv/blob/v0.16.0/LICENSE)
+
+
+```
+MIT License
 
 Copyright (c) 2019 Christian Muehlhaeuser
 
@@ -3795,27 +3375,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/pkg/errors - - -
Copyright (c) 2015, Dave Cheney 
+
+```
+
+## github.com/pkg/errors
+
+* Name: github.com/pkg/errors
+* Version: v0.9.1
+
+* License: [BSD-2-Clause](https://github.com/pkg/errors/blob/v0.9.1/LICENSE)
+
+
+```
+Copyright (c) 2015, Dave Cheney 
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
@@ -3838,27 +3410,19 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - github.com/pquerna/otp - - -
+
+```
+
+## github.com/pquerna/otp
+
+* Name: github.com/pquerna/otp
+* Version: v1.4.0
+
+* License: [Apache-2.0](https://github.com/pquerna/otp/blob/v1.4.0/LICENSE)
+
+
+```
+
                                  Apache License
                            Version 2.0, January 2004
                         http://www.apache.org/licenses/
@@ -4060,27 +3624,19 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
-
-
- -
- - github.com/remyoudompheng/bigfft - -
    -
  • - Version: v0.0.0-20230129092748-24d4a6f8daec -
  • -
  • - License: - - - BSD-3-Clause - - -
  • -
-
Copyright (c) 2012 The Go Authors. All rights reserved.
+
+```
+
+## github.com/remyoudompheng/bigfft
+
+* Name: github.com/remyoudompheng/bigfft
+* Version: v0.0.0-20230129092748-24d4a6f8daec
+
+* License: [BSD-3-Clause](https://github.com/remyoudompheng/bigfft/blob/24d4a6f8daec/LICENSE)
+
+
+```
+Copyright (c) 2012 The Go Authors. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -4107,27 +3663,19 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - github.com/rivo/uniseg - -
    -
  • - Version: v0.4.7 -
  • -
  • - License: - - - MIT - - -
  • -
-
MIT License
+
+```
+
+## github.com/rivo/uniseg
+
+* Name: github.com/rivo/uniseg
+* Version: v0.4.7
+
+* License: [MIT](https://github.com/rivo/uniseg/blob/v0.4.7/LICENSE.txt)
+
+
+```
+MIT License
 
 Copyright (c) 2019 Oliver Kuederle
 
@@ -4148,27 +3696,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - github.com/valyala/bytebufferpool - -
    -
  • - Version: v1.0.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+
+```
+
+## github.com/valyala/bytebufferpool
+
+* Name: github.com/valyala/bytebufferpool
+* Version: v1.0.0
+
+* License: [MIT](https://github.com/valyala/bytebufferpool/blob/v1.0.0/LICENSE)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2016 Aliaksandr Valialkin, VertaMedia
 
@@ -4190,27 +3730,19 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
 
-
-
- -
- - github.com/valyala/fasthttp - -
    -
  • - Version: v1.61.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+
+```
+
+## github.com/valyala/fasthttp
+
+* Name: github.com/valyala/fasthttp
+* Version: v1.61.0
+
+* License: [MIT](https://github.com/valyala/fasthttp/blob/v1.61.0/LICENSE)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2015-present Aliaksandr Valialkin, VertaMedia, Kirill Danshin, Erik Dubbelboer, FastHTTP Authors
 
@@ -4219,27 +3751,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
- -
- - github.com/valyala/fasthttp/reuseport - -
    -
  • - Version: v1.61.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+
+```
+
+## github.com/valyala/fasthttp/reuseport
+
+* Name: github.com/valyala/fasthttp/reuseport
+* Version: v1.61.0
+
+* License: [MIT](https://github.com/valyala/fasthttp/blob/v1.61.0/reuseport/LICENSE)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2014 Max Riveiro
 
@@ -4259,27 +3783,19 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
- -
- - github.com/xo/terminfo - -
    -
  • - Version: v0.0.0-20220910002029-abceb7e1c41e -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+SOFTWARE.
+```
+
+## github.com/xo/terminfo
+
+* Name: github.com/xo/terminfo
+* Version: v0.0.0-20220910002029-abceb7e1c41e
+
+* License: [MIT](https://github.com/xo/terminfo/blob/abceb7e1c41e/LICENSE)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2016 Anmol Sethi
 
@@ -4300,27 +3816,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
-
-
- -
- - go.opencensus.io - - -
+
+```
+
+## go.opencensus.io
+
+* Name: go.opencensus.io
+* Version: v0.24.0
+
+* License: [Apache-2.0](https://github.com/census-instrumentation/opencensus-go/blob/v0.24.0/LICENSE)
+
+
+```
+
                                  Apache License
                            Version 2.0, January 2004
                         http://www.apache.org/licenses/
@@ -4521,27 +4029,19 @@ SOFTWARE.
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
-   limitations under the License.
-
- -
- - golang.org/x/crypto - - -
Copyright 2009 The Go Authors.
+   limitations under the License.
+```
+
+## golang.org/x/crypto
+
+* Name: golang.org/x/crypto
+* Version: v0.37.0
+
+* License: [BSD-3-Clause](https://cs.opensource.google/go/x/crypto/+/v0.37.0:LICENSE)
+
+
+```
+Copyright 2009 The Go Authors.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -4568,27 +4068,19 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - golang.org/x/exp/constraints - -
    -
  • - Version: v0.0.0-20250408133849-7e4ce0ab07d0 -
  • -
  • - License: - - - BSD-3-Clause - - -
  • -
-
Copyright 2009 The Go Authors.
+
+```
+
+## golang.org/x/exp/constraints
+
+* Name: golang.org/x/exp/constraints
+* Version: v0.0.0-20250408133849-7e4ce0ab07d0
+
+* License: [BSD-3-Clause](https://cs.opensource.google/go/x/exp/+/7e4ce0ab:LICENSE)
+
+
+```
+Copyright 2009 The Go Authors.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -4615,27 +4107,19 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - golang.org/x/net - - -
Copyright 2009 The Go Authors.
+
+```
+
+## golang.org/x/net
+
+* Name: golang.org/x/net
+* Version: v0.39.0
+
+* License: [BSD-3-Clause](https://cs.opensource.google/go/x/net/+/v0.39.0:LICENSE)
+
+
+```
+Copyright 2009 The Go Authors.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -4662,27 +4146,19 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - golang.org/x/sys - - -
Copyright 2009 The Go Authors.
+
+```
+
+## golang.org/x/sys
+
+* Name: golang.org/x/sys
+* Version: v0.32.0
+
+* License: [BSD-3-Clause](https://cs.opensource.google/go/x/sys/+/v0.32.0:LICENSE)
+
+
+```
+Copyright 2009 The Go Authors.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -4709,27 +4185,19 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - golang.org/x/text - - -
Copyright 2009 The Go Authors.
+
+```
+
+## golang.org/x/text
+
+* Name: golang.org/x/text
+* Version: v0.24.0
+
+* License: [BSD-3-Clause](https://cs.opensource.google/go/x/text/+/v0.24.0:LICENSE)
+
+
+```
+Copyright 2009 The Go Authors.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -4756,27 +4224,19 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - google.golang.org/protobuf - - -
Copyright (c) 2018 The Go Authors. All rights reserved.
+
+```
+
+## google.golang.org/protobuf
+
+* Name: google.golang.org/protobuf
+* Version: v1.36.6
+
+* License: [BSD-3-Clause](https://github.com/protocolbuffers/protobuf-go/blob/v1.36.6/LICENSE)
+
+
+```
+Copyright (c) 2018 The Go Authors. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -4803,27 +4263,19 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - gorm.io/gorm - -
    -
  • - Version: v1.26.0 -
  • -
  • - License: - - - MIT - - -
  • -
-
The MIT License (MIT)
+
+```
+
+## gorm.io/gorm
+
+* Name: gorm.io/gorm
+* Version: v1.26.0
+
+* License: [MIT](https://github.com/go-gorm/gorm/blob/v1.26.0/LICENSE)
+
+
+```
+The MIT License (MIT)
 
 Copyright (c) 2013-present  Jinzhu 
 
@@ -4844,27 +4296,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 THE SOFTWARE.
-
-
- -
- - modernc.org/libc - - -
Copyright (c) 2009 The Go Authors. All rights reserved.
+
+```
+
+## modernc.org/libc
+
+* Name: modernc.org/libc
+* Version: v1.64.0
+
+* License: [BSD-3-Clause](https://gitlab.com/cznic/libc/blob/v1.64.0/LICENSE-GO)
+
+
+```
+Copyright (c) 2009 The Go Authors. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -4891,45 +4335,31 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - modernc.org/mathutil - -
    -
  • - Version: v1.7.1 -
  • -
  • - License: - - Unknown - -
  • -
-

-		
- -
- - modernc.org/memory - - -
Copyright (c) 2009 The Go Authors. All rights reserved.
+
+```
+
+## modernc.org/mathutil
+
+* Name: modernc.org/mathutil
+* Version: v1.7.1
+
+* License: Unknown
+
+
+```
+
+```
+
+## modernc.org/memory
+
+* Name: modernc.org/memory
+* Version: v1.10.0
+
+* License: [BSD-3-Clause](https://gitlab.com/cznic/memory/blob/v1.10.0/LICENSE-GO)
+
+
+```
+Copyright (c) 2009 The Go Authors. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -4956,27 +4386,19 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
- - modernc.org/sqlite/lib - - -
Copyright (c) 2017 The Sqlite Authors. All rights reserved.
+
+```
+
+## modernc.org/sqlite/lib
+
+* Name: modernc.org/sqlite/lib
+* Version: v1.37.0
+
+* License: [BSD-3-Clause](https://gitlab.com/cznic/sqlite/blob/v1.37.0/LICENSE)
+
+
+```
+Copyright (c) 2017 The Sqlite Authors. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
@@ -5002,8 +4424,6 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
- -
-{% endblock %} \ No newline at end of file + +``` + diff --git a/views/licenses.html b/views/licenses.html new file mode 100644 index 0000000..b478a22 --- /dev/null +++ b/views/licenses.html @@ -0,0 +1,20 @@ +{% extends "layouts/main.html" %} + +{% block main %} +
+ {{ Markdown|safe }} +
+{% endblock %} + +{% block stylesheet %} + +{% endblock %}