mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 01:59:39 -05:00
14 lines
356 B
Go
14 lines
356 B
Go
package storage
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// ErrStorageInitialization is returned when the storage initialization fails
|
|
ErrStorageInitialization = errors.New("failed to initialize storage")
|
|
|
|
// ErrStorageValidation is returned when the storage configuration is invalid
|
|
ErrStorageValidation = errors.New("failed to validate storage configuration")
|
|
)
|