diff options
| author | Bobby <[email protected]> | 2025-06-15 00:05:43 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2025-06-15 00:05:43 +0530 |
| commit | 9f6aac08a8e9a0685a21fbe4ee292cb514485f22 (patch) | |
| tree | 165b210ffd080c47d775596322868996d51413dc /go.mod | |
| parent | e79dcba2565c10f9a967a97e863fedb727a3a041 (diff) | |
| download | imageboard-9f6aac08a8e9a0685a21fbe4ee292cb514485f22.tar.xz imageboard-9f6aac08a8e9a0685a21fbe4ee292cb514485f22.zip | |
setting up the imageboard
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -0,0 +1,33 @@ +module imageboard + +go 1.24.4 + +require ( + github.com/gofiber/fiber/v2 v2.52.8 + github.com/gofiber/storage/postgres/v2 v2.0.3 + github.com/gofiber/template/html/v2 v2.1.3 + github.com/joho/godotenv v1.5.1 +) + +require ( + github.com/andybalholm/brotli v1.1.0 // indirect + github.com/gofiber/template v1.8.3 // indirect + github.com/gofiber/utils v1.1.0 // indirect + github.com/google/uuid v1.6.0 // indirect + github.com/jackc/pgpassfile v1.0.0 // indirect + github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect + github.com/jackc/pgx/v5 v5.4.3 // indirect + github.com/jackc/puddle/v2 v2.2.1 // indirect + github.com/klauspost/compress v1.17.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.16 // indirect + github.com/rivo/uniseg v0.2.0 // indirect + github.com/valyala/bytebufferpool v1.0.0 // indirect + github.com/valyala/fasthttp v1.51.0 // indirect + github.com/valyala/tcplisten v1.0.0 // indirect + golang.org/x/crypto v0.14.0 // indirect + golang.org/x/sync v0.1.0 // indirect + golang.org/x/sys v0.28.0 // indirect + golang.org/x/text v0.13.0 // indirect +) |
