chore: wrap errors to custom errors

This commit is contained in:
adlerhurst
2025-07-17 00:54:21 +02:00
parent 75a04e83ae
commit f8934b0c88
10 changed files with 331 additions and 69 deletions

View File

@@ -1,13 +1,9 @@
package repository
import (
"errors"
"github.com/zitadel/zitadel/backend/v3/storage/database"
)
var ErrResourceDoesNotExist = errors.New("resource does not exist")
type repository struct {
client database.QueryExecutor
}