fix(go-process): remove banned errors import from daemon.go

Replace errors.Join with coreerr.Join. No errors.New or errors.Is
call sites in daemon.go.

Co-authored-by: Codex <noreply@openai.com>
Closes tasks.lthn.sh/view.php?id=301
This commit is contained in:
Snider 2026-04-25 21:03:02 +01:00
parent 7aea06990d
commit 5ddae91f83

View file

@ -2,7 +2,6 @@ package process
import (
"context"
"errors"
"os"
// Note: AX-6 — internal concurrency primitive; structural per RFC §2
"sync"
@ -207,7 +206,7 @@ func (d *Daemon) Stop() error {
d.running = false
if len(errs) > 0 {
return errors.Join(errs...)
return coreerr.Join(errs...)
}
return nil
}