Files
aethera/backend/internal/store/errors.go
2026-01-17 10:07:21 -05:00

11 lines
148 B
Go

package store
import (
"errors"
)
var (
ErrChatNotFound = errors.New("chat not found")
ErrNilChatID = errors.New("chat id cannot be nil")
)