implement

This commit is contained in:
2023-10-31 23:26:03 +03:00
parent 1087865b3d
commit 201c6a0425
8 changed files with 735 additions and 1 deletions

View File

@ -0,0 +1,11 @@
package postgres
type Error string
func (err Error) Error() string { return string(err) }
const (
ErrVersionIDMismatch Error = "version ids does not match"
ErrNoMessage Error = "no messages in queue"
ErrNotImplemented Error = "not implemented"
)