mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
a0b70b0ec7
A number of PRs have come through which modified the vendor folder without recording the proper information. This resets everything back to the recorded version.
15 lines
444 B
Go
15 lines
444 B
Go
package gophercloud
|
|
|
|
import "time"
|
|
|
|
// AuthResults [deprecated] is a leftover type from the v0.x days. It was
|
|
// intended to describe common functionality among identity service results, but
|
|
// is not actually used anywhere.
|
|
type AuthResults interface {
|
|
// TokenID returns the token's ID value from the authentication response.
|
|
TokenID() (string, error)
|
|
|
|
// ExpiresAt retrieves the token's expiration time.
|
|
ExpiresAt() (time.Time, error)
|
|
}
|