mirror of
https://github.com/harness/drone.git
synced 2025-05-06 16:29:40 +08:00
10 lines
222 B
Go
10 lines
222 B
Go
package common
|
|
|
|
type Token struct {
|
|
Sha string `json:"-"`
|
|
Login string `json:"-"`
|
|
Repos []string `json:"repos,omitempty"`
|
|
Scopes []string `json:"scopes,omitempty"`
|
|
Expiry int64 `json:"expiry,omitempty"`
|
|
}
|