Files
realy/store/errors.go
mleku bbebbe2b02 Add tracing with lol.Tracer in multiple functions.
Introduced `lol.Tracer` for function entry/exit logging across various packages. This improves traceability and debugging of function executions while preserving existing behavior. Removed unused files `doc.go` and `nothing.go` to clean up the repository.
2025-06-29 07:32:24 +01:00

9 lines
195 B
Go

package store
import "errors"
var (
ErrDupEvent = errors.New("duplicate: event already exists")
ErrEventNotExists = errors.New("unknown: event not known by any source of this realy")
)