mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-02 21:32:20 +00:00
6 lines
68 B
Go
6 lines
68 B
Go
|
|
package cache
|
||
|
|
|
||
|
|
type Config interface {
|
||
|
|
NewCache() (Cache, error)
|
||
|
|
}
|