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