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.
34 lines
834 B
34 lines
834 B
package cache
|
|
|
|
import (
|
|
"github.com/Masterminds/semver/v3"
|
|
"github.com/rocboss/paopao-ce/internal/core"
|
|
"github.com/rocboss/paopao-ce/internal/model"
|
|
"github.com/rocboss/paopao-ce/internal/model/rest"
|
|
)
|
|
|
|
var (
|
|
_ core.CacheIndexService = (*noneCacheIndexServant)(nil)
|
|
_ core.VersionInfo = (*noneCacheIndexServant)(nil)
|
|
)
|
|
|
|
type noneCacheIndexServant struct {
|
|
ips core.IndexPostsService
|
|
}
|
|
|
|
func (s *noneCacheIndexServant) IndexPosts(user *model.User, offset int, limit int) (*rest.IndexTweetsResp, error) {
|
|
return s.ips.IndexPosts(user, offset, limit)
|
|
}
|
|
|
|
func (s *noneCacheIndexServant) SendAction(_act core.IdxAct, _post *model.Post) {
|
|
// empty
|
|
}
|
|
|
|
func (s *noneCacheIndexServant) Name() string {
|
|
return "NoneCacheIndex"
|
|
}
|
|
|
|
func (s *noneCacheIndexServant) Version() *semver.Version {
|
|
return semver.MustParse("v0.1.0")
|
|
}
|