diff options
author | Brice Tonon <7442677+vulonkaaz@users.noreply.github.com> | 2024-07-04 18:51:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-04 18:51:23 +0200 |
commit | 385793d0f1ccb434323c2e99591d48f327171f1c (patch) | |
tree | 0db74358679ef833fba1bcfdf6a80d92f3d670c4 /go.mod | |
parent | 0acbebdd2cb7dea1dbebd8cd4a3b90facaa3cf95 (diff) | |
parent | e4eb4be4e258512fa2ae1d34e126bcff194a6db6 (diff) |
Merge pull request #1 from shrapnelnet/master
Inline ImageMagick logic
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -3,22 +3,25 @@ module paperchan.club go 1.21.10 require ( + github.com/gofiber/fiber/v2 v2.52.4 + github.com/gofiber/template/html/v2 v2.1.1 + github.com/jmoiron/sqlx v1.4.0 + github.com/joho/godotenv v1.5.1 + github.com/lib/pq v1.10.9 + gopkg.in/gographics/imagick.v3 v3.7.0 +) + +require ( github.com/andybalholm/brotli v1.1.0 // indirect - github.com/gofiber/fiber/v2 v2.52.4 // indirect - github.com/gofiber/fiber/v3 v3.0.0-beta.2 // indirect github.com/gofiber/template v1.8.3 // indirect - github.com/gofiber/template/html/v2 v2.1.1 // indirect github.com/gofiber/utils v1.1.0 // indirect - github.com/gofiber/utils/v2 v2.0.0-beta.4 // indirect github.com/google/uuid v1.6.0 // indirect - github.com/jmoiron/sqlx v1.4.0 // indirect - github.com/joho/godotenv v1.5.1 // indirect github.com/klauspost/compress v1.17.8 // indirect - github.com/lib/pq v1.10.9 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.20 // indirect github.com/mattn/go-runewidth v0.0.15 // indirect github.com/rivo/uniseg v0.2.0 // indirect + github.com/stretchr/testify v1.9.0 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasthttp v1.54.0 // indirect github.com/valyala/tcplisten v1.0.0 // indirect |