Files
parcoursmob/core/utils/storage/cache.go
2025-10-14 18:11:13 +02:00

12 lines
175 B
Go
Executable File

package storage
import (
"github.com/spf13/viper"
)
type CacheHandler KVHandler
func NewCacheHandler(cfg *viper.Viper) (CacheHandler, error) {
return NewKVHandler(cfg)
}