queues-go/app/utils/errors.go
Egor Matveev c2659fb49c initial
2024-12-31 00:53:40 +03:00

7 lines
140 B
Go

package utils
import "errors"
var ErrIncorrectFormat = errors.New("incorrect_format")
var ErrInternalError = errors.New("internal_error")