mirror of
https://github.com/drone/drone-cli.git
synced 2025-07-11 14:44:23 +02:00
11 lines
211 B
Go
11 lines
211 B
Go
package common
|
|
|
|
type Repo struct {
|
|
ID int64 `json:"id"`
|
|
Remote string `json:"remote"`
|
|
Host string `json:"host"`
|
|
Owner string `json:"owner"`
|
|
Name string `json:"name"`
|
|
URL string `json:"url"`
|
|
}
|