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
450 B
21 lines
450 B
package bnj |
|
|
|
import "context" |
|
|
|
func timeFinishKey() string { |
|
return "time_finish" |
|
} |
|
|
|
func timeLessKey() string { |
|
return "time_less" |
|
} |
|
|
|
//go:generate $GOPATH/src/go-common/app/tool/cache/mc |
|
type _mc interface { |
|
// mc: -key=timeFinishKey |
|
CacheTimeFinish(c context.Context) (int64, error) |
|
// mc: -key=timeFinishKey |
|
DelCacheTimeFinish(c context.Context) (int64, error) |
|
// mc: -key=timeLessKey |
|
DelCacheTimeLess(c context.Context) (int64, error) |
|
}
|
|
|