123456789101112131415161718192021 |
- package bnj
- import "context"
- func timeFinishKey() string {
- return "time_finish"
- }
- func timeLessKey() string {
- return "time_less"
- }
- type _mc interface {
-
- CacheTimeFinish(c context.Context) (int64, error)
-
- DelCacheTimeFinish(c context.Context) (int64, error)
-
- DelCacheTimeLess(c context.Context) (int64, error)
- }
|