mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 00:39:36 +00:00
b7d027e2fd
* fix(db): always use begin tx * fix(handler): timeout for begin
10 lines
168 B
Go
10 lines
168 B
Go
package crypto
|
|
|
|
import "context"
|
|
|
|
type KeyStorage interface {
|
|
ReadKeys() (Keys, error)
|
|
ReadKey(id string) (*Key, error)
|
|
CreateKeys(context.Context, ...*Key) error
|
|
}
|