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

@@ -48,6 +48,10 @@ func (i *impl) Set(_ context.Context, key string, value []byte, expiry time.Dura
return nil
}
func (i *impl) IsPersistent() bool {
return false
}
func (i *impl) cleanupThread(ctx context.Context) {
t := time.NewTicker(5 * time.Minute)
defer t.Stop()