mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-27 13:19:19 +00:00
8 lines
157 B
Go
8 lines
157 B
Go
|
|
package cache
|
||
|
|
|
||
|
|
type Cache interface {
|
||
|
|
Set(key string, object interface{}) error
|
||
|
|
Get(key string, ptrToObject interface{}) error
|
||
|
|
Delete(key string) error
|
||
|
|
}
|