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.
9 lines
195 B
Go
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")
|
|
) |