Remove the third-party godotenv dependency by inlining a minimal .env file parser that supports the same syntax we use (KEY=VALUE, comments, export prefix, single/double quoted values). Add 13 unit tests covering all parsing paths and the no-overwrite behavior. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
210 B
Modula-2
11 lines
210 B
Modula-2
module srsx
|
|
|
|
go 1.24
|
|
|
|
require github.com/go-redis/redis/v8 v8.11.5
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
)
|