diff options
| author | 2025-07-16 17:49:03 +0700 | |
|---|---|---|
| committer | 2025-07-16 17:49:03 +0700 | |
| commit | f968d443dc5c6e1f5140922313b0d6e8019fc269 (patch) | |
| tree | efe1507ec20feccbe408ca2b05303400546431b1 /go.mod | |
| parent | 4fa22c837cb00b87cd43c0aceec26729b8c3fa48 (diff) | |
| download | thumbnail-generator-f968d443dc5c6e1f5140922313b0d6e8019fc269.tar.gz thumbnail-generator-f968d443dc5c6e1f5140922313b0d6e8019fc269.zip | |
feat: implement local-unix clients
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -3,17 +3,19 @@ module github.com/SayaAndy/saya-today-thumbnail-generator go 1.24.4 require ( - github.com/Backblaze/blazer v0.7.2 // indirect - github.com/benbusby/b2 v1.4.0 // indirect + github.com/Backblaze/blazer v0.7.2 + github.com/go-playground/validator/v10 v10.27.0 + github.com/kolesa-team/go-webp v1.0.5 + golang.org/x/image v0.29.0 + golang.org/x/sys v0.30.0 +) + +require ( github.com/gabriel-vasile/mimetype v1.4.8 // indirect github.com/go-playground/locales v0.14.1 // indirect github.com/go-playground/universal-translator v0.18.1 // indirect - github.com/go-playground/validator/v10 v10.27.0 // indirect - github.com/kolesa-team/go-webp v1.0.5 // indirect github.com/leodido/go-urn v1.4.0 // indirect golang.org/x/crypto v0.33.0 // indirect - golang.org/x/image v0.29.0 // indirect golang.org/x/net v0.34.0 // indirect - golang.org/x/sys v0.30.0 // indirect golang.org/x/text v0.27.0 // indirect ) |