none.go 646 B

123456789101112131415161718192021222324252627282930
  1. package testdata
  2. import (
  3. "context"
  4. )
  5. // mock test
  6. var (
  7. _noneCacheFunc func(c context.Context) (*Article, error)
  8. _noneRawFunc func(c context.Context) (*Article, error)
  9. _noneAddCacheFunc func(c context.Context, value *Article) error
  10. )
  11. // CacheNone .
  12. func (d *Dao) CacheNone(c context.Context) (*Article, error) {
  13. // get data from cache
  14. return _noneCacheFunc(c)
  15. }
  16. // RawNone .
  17. func (d *Dao) RawNone(c context.Context) (*Article, error) {
  18. // get data from db
  19. return _noneRawFunc(c)
  20. }
  21. // AddCacheNone .
  22. func (d *Dao) AddCacheNone(c context.Context, value *Article) error {
  23. // add to cache
  24. return _noneAddCacheFunc(c, value)
  25. }