mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-27 21:34:24 +00:00
12 lines
193 B
Go
12 lines
193 B
Go
|
|
package fastcache
|
||
|
|
|
||
|
|
import "github.com/caos/zitadel/internal/cache"
|
||
|
|
|
||
|
|
type Config struct {
|
||
|
|
MaxCacheSizeInByte int
|
||
|
|
}
|
||
|
|
|
||
|
|
func (c *Config) NewCache() (cache.Cache, error) {
|
||
|
|
return NewFastcache(c)
|
||
|
|
}
|