21 lignes
357 o
Go
21 lignes
357 o
Go
package memcache
|
|
|
|
import (
|
|
"github.com/NyaaPantsu/nyaa/common"
|
|
"github.com/NyaaPantsu/nyaa/model"
|
|
)
|
|
|
|
type Memcache struct {
|
|
}
|
|
|
|
func (c *Memcache) Get(key common.SearchParam, r func() ([]model.Torrent, int, error)) (torrents []model.Torrent, num int, err error) {
|
|
return
|
|
}
|
|
|
|
func (c *Memcache) ClearAll() {
|
|
|
|
}
|
|
|
|
func New() *Memcache {
|
|
return &Memcache{}
|
|
}
|