mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
479 B
21 lines
479 B
//go:build constraint
|
|
|
|
package cache
|
|
|
|
import (
|
|
"github.com/rocboss/paopao-ce/internal/core"
|
|
)
|
|
|
|
var (
|
|
_ tweetsCache = (*bigCacheTweetsCache)(nil)
|
|
|
|
_ core.RedisCache = (*redisCache)(nil)
|
|
_ tweetsCache = (*redisCacheTweetsCache)(nil)
|
|
|
|
_ core.CacheIndexService = (*noneCacheIndexServant)(nil)
|
|
_ core.VersionInfo = (*noneCacheIndexServant)(nil)
|
|
|
|
_ core.CacheIndexService = (*simpleCacheIndexServant)(nil)
|
|
_ core.VersionInfo = (*simpleCacheIndexServant)(nil)
|
|
)
|