Files
api-golang/go.mod
Flavio Fois fa1f65baf7
Some checks failed
Build & Publish Docker Image / build-and-push (push) Failing after 33s
add support for SQLite as an alternative database backend
Implement SQLite support using the pure Go `modernc.org/sqlite` driver and update the migration system to handle driver-specific schemas. Users can now choose between MySQL and SQLite by setting the `DB_DRIVER` environment variable.
2026-03-29 17:46:27 +02:00

31 lines
832 B
Modula-2

module emly-api-go
go 1.26
require (
github.com/go-chi/chi/v5 v5.2.4
github.com/go-chi/httprate v0.14.1
github.com/go-sql-driver/mysql v1.8.1
github.com/joho/godotenv v1.5.1
golang.org/x/crypto v0.49.0
)
require (
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/ncruces/go-strftime v1.0.0 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
golang.org/x/sys v0.42.0 // indirect
modernc.org/libc v1.70.0 // indirect
modernc.org/mathutil v1.7.1 // indirect
modernc.org/memory v1.11.0 // indirect
modernc.org/sqlite v1.47.0 // indirect
)
require (
filippo.io/edwards25519 v1.1.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/jmoiron/sqlx v1.3.5
)