fix: remove Buildarch from globals, main, Makefile, logger, and tests
Visas pārbaudes ir veiksmīgas
check / check (push) Successful in 4s

Buildarch was erroneously included. Remove it from:
- internal/globals/globals.go (struct field, package var, setter)
- cmd/dnswatcher/main.go (var declaration, setter call)
- Makefile (BUILDARCH var, ldflags)
- internal/logger/logger.go (Identify log field)
- internal/config/config_test.go (test fixture)
- README.md (build command, architecture section)
Šī revīzija ir iekļauta:
clawbot
2026-03-04 03:48:45 -08:00
vecāks c15ca77bd7
revīzija c96ed42c31
6 mainīti faili ar 15 papildinājumiem un 32 dzēšanām

Parādīt failu

@@ -19,9 +19,8 @@ func newTestParams(t *testing.T) config.Params {
t.Helper()
g := &globals.Globals{
Appname: "dnswatcher",
Version: "test",
Buildarch: "amd64",
Appname: "dnswatcher",
Version: "test",
}
l, err := logger.New(nil, logger.Params{Globals: g})