增加缓存驱动的定义

This commit is contained in:
白茶清欢 2024-06-21 14:51:39 +08:00
parent 39e82fd033
commit 666060e4de

14
cache.go Normal file
View File

@ -0,0 +1,14 @@
// Package consts ...
//
// Description : consts ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2024-06-21 14:49
package consts
const (
CacheDriverRedis = "redis" // redis缓存驱动
CacheDriverGocache = "gocache" // gocache缓存驱动
CacheDriverMemcached = "memcached" // memcache缓存驱动
)