fix: critical bugs from code review (data corruption, error contract, HTTP hardening) #5

Merged
frx merged 7 commits from refactor/code-review-fixes into master 2026-06-28 14:04:25 +00:00
11 changed files with 91 additions and 41 deletions
Showing only changes of commit bd4a066d10 - Show all commits

View File

@ -1,8 +1,6 @@
package domain package domain
import ( import "errors"
cerrors "git.loyso.art/frx/kurious/internal/common/errors"
)
// ErrNotImplemented is delegated to common/errors.ErrNotImplemented for consistency. // ErrNotImplemented is returned by interface stubs that have not been implemented yet.
var ErrNotImplemented = cerrors.ErrNotImplemented var ErrNotImplemented = errors.New("not implemented")