feat(storage): add IsPersistent method and validation warning for signing keys

This commit is contained in:
Jason Cameron
2025-09-06 22:01:38 -04:00
parent 9e8e643c7f
commit e53dd5a37a
7 changed files with 35 additions and 4 deletions

View File

@@ -47,3 +47,7 @@ func (s *Store) Set(ctx context.Context, key string, value []byte, expiry time.D
return nil
}
func (s *Store) IsPersistent() bool {
return true
}