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.
|
package wechat |
|
|
|
import ( |
|
"context" |
|
|
|
"go-common/app/interface/main/web-goblin/model/wechat" |
|
) |
|
|
|
//go:generate $GOPATH/src/go-common/app/tool/cache/gen |
|
type _cache interface { |
|
// cache |
|
AccessToken(c context.Context) (*wechat.AccessToken, error) |
|
}
|
|
|