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

9 lines
136 B
Go
Raw Permalink Normal View History

2022-08-17 01:34:18 +00:00
package authcache
import "golang.org/x/oauth2"
type Cache interface {
Fetch() (*oauth2.Token, error)
Persist(*oauth2.Token) error
}