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:
2025-07-27 19:02:05 +03:00
parent 854de3865b
commit 48878e8433
13 changed files with 265 additions and 153 deletions

View File

@@ -0,0 +1,8 @@
package errinternal
import "errors"
var (
ErrInvalidKey = errors.New("storage: invalid key")
ErrNotFound = errors.New("storage: not found")
)