oneandone-billing-mailer/pkg/auth/authcache/cache.go

9 lines
136 B
Go

package authcache
import "golang.org/x/oauth2"
type Cache interface {
Fetch() (*oauth2.Token, error)
Persist(*oauth2.Token) error
}