mirror of
https://github.com/status-im/status-go.git
synced 2025-01-15 09:19:26 +00:00
12 lines
217 B
Go
12 lines
217 B
Go
|
package protocol
|
||
|
|
||
|
import (
|
||
|
"github.com/pkg/errors"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
ErrChatIDEmpty = errors.New("chat ID is empty")
|
||
|
ErrChatNotFound = errors.New("can't find chat")
|
||
|
ErrNotImplemented = errors.New("not implemented")
|
||
|
)
|