nextinbox / go.mod
loko-dev's picture
Add initial project setup with environment configuration, Go modules, Dockerfile, and example code
4f3c35d
raw
history blame contribute delete
423 Bytes
module nextinbox
go 1.23.2
require (
github.com/gorilla/mux v1.8.1
github.com/joho/godotenv v1.5.1
github.com/lengzuo/supa v1.0.1
github.com/rs/cors v1.11.1
)
require (
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/rs/zerolog v1.32.0 // indirect
golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 // indirect
golang.org/x/sys v0.12.0 // indirect
)