feat: working version
1. implemented filesystem storage, NATS object storage and saving to Vault. 2. Test coverage is fine for filesystem and Vault (and NATS object does not really require extensive tests)
This commit is contained in:
8
internal/errinternal/errors.go
Normal file
8
internal/errinternal/errors.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package errinternal
|
||||
|
||||
import "errors"
|
||||
|
||||
var (
|
||||
ErrInvalidKey = errors.New("storage: invalid key")
|
||||
ErrNotFound = errors.New("storage: not found")
|
||||
)
|
Reference in New Issue
Block a user