mercedes-byocar-exporter/internal/credential/interface.go
2022-11-20 00:47:49 +01:00

13 lines
316 B
Go

package credential
import "time"
type (
Store interface {
GetClientCredentials() (clientID, clientSecret string, err error)
GetToken() (accessToken, refreshToken string, expiry time.Time, err error)
HasCredentials() (bool, error)
UpdateToken(accessToken, refreshToken string, expiry time.Time) error
}
)