parcoursmob/utils/storage/cache.go

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)
}