initial commit

This commit is contained in:
Daniel Hjartland
2024-11-26 18:08:49 +01:00
commit 75be79c6cf
26 changed files with 1885 additions and 0 deletions

15
go.mod Normal file
View File

@@ -0,0 +1,15 @@
module github.com/bootdotdev/learn-file-storage-s3-golang-starter
go 1.23.0
require (
github.com/golang-jwt/jwt/v5 v5.0.0-rc.1
golang.org/x/crypto v0.7.0
)
require (
github.com/google/uuid v1.6.0
github.com/joho/godotenv v1.5.1
github.com/lib/pq v1.10.9
github.com/mattn/go-sqlite3 v1.14.24
)