Additions to domain/ and workspace/ chron-note packages

This commit is contained in:
2026-03-11 14:03:52 +08:00
parent 8edeb3ac99
commit 34d18e244e
16 changed files with 744 additions and 3 deletions

View File

@@ -1,2 +1,11 @@
package domain
import "errors"
var (
ErrInvalidObjectID = errors.New("invalid object id")
ErrInvalidBlobID = errors.New("invalid blob id")
ErrUnknownEventType = errors.New("unknown event type")
ErrInvalidEvent = errors.New("invalid event")
ErrDecode = errors.New("decode error")
)