hydra-webauthn/internal/storage/error.go

9 lines
132 B
Go
Raw Permalink Normal View History

2023-11-15 20:38:25 +01:00
package storage
import "errors"
var (
ErrAlreadyExist = errors.New("already exist")
ErrNotFound = errors.New("not found")
)