- Initialize go.mod with module path kode.naiv.no/olemd/forgejo-mcp-broker
- Create directory layout: cmd/broker + internal/{buildinfo,config,log,store,httpserver}
- Add Makefile with build/test/lint/tidy/clean targets and ldflags-injected build info
- Stub cmd/broker/main.go with --version support; real wiring follows in -t37
- Stub doc.go for each internal/* package, pointing to the issue that fills it in
Closes forgejo-mcp-broker-n84.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
6 lines
260 B
Go
6 lines
260 B
Go
// Package log constructs the process-wide structured logger (log/slog, JSON
|
|
// handler to stderr) and provides small helpers for attaching build-info and
|
|
// request-scoped fields.
|
|
//
|
|
// Implementation lands alongside forgejo-mcp-broker-8ei / t37.
|
|
package log
|