mirror of
https://github.com/harness/drone.git
synced 2025-05-07 11:21:34 +08:00
12 lines
123 B
Go
12 lines
123 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Token struct {
|
|
AccessToken string
|
|
RefreshToken string
|
|
Expiry time.Time
|
|
}
|