Files
api-golang/go.mod
Flavio Fois 9cc0f3157c
All checks were successful
Build & Publish Docker Image / build-and-push (push) Successful in 46s
add developer documentation and custom rate limiter with banning
Add a comprehensive guide for developers transitioning from Node/PHP and implement a new middleware to handle IP-based rate limiting with temporary banning functionality. Also refactors configuration loading to use a singleton pattern for better resource management.
2026-03-23 19:10:29 +01:00

23 lines
439 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 (
golang.org/x/sys v0.42.0 // indirect
golang.org/x/time v0.15.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
)