Files
core/go.mod
T
Rene Nochebuena b01cbd3be6 docs(core): fix logz.Options -> logz.Config; bump to v1.1.0 (#1)
docs(core): fix logz.Options -> logz.Config in doc examples; bump to v1.1.0

Coordinated framework release. Documentation-only code change plus the shared
version bump.

- core/launcher/doc.go, core/logz/doc.go: logz.New(logz.Options{...}) ->
  logz.Config (Options was retired per ADR-003; the constructor takes Config).
- go.mod: contracts -> v1.1.0 (via go get + go mod tidy).

Verified by compiling the example patterns against the real API. Badge -> v1.1.0.

Reviewed-on: #1
Co-authored-by: Rene Nochebuena Guerrero <rene@nochebuena.dev>
Co-committed-by: Rene Nochebuena Guerrero <rene@nochebuena.dev>
2026-08-07 18:47:18 -06:00

19 lines
515 B
AMPL

module code.nochebuena.dev/einherjar/core
go 1.26
require (
code.nochebuena.dev/einherjar/contracts v1.1.0
github.com/go-playground/validator/v10 v10.30.1
)
require (
github.com/gabriel-vasile/mimetype v1.4.12 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
golang.org/x/crypto v0.46.0 // indirect
golang.org/x/sys v0.39.0 // indirect
golang.org/x/text v0.32.0 // indirect
)