mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-23 09:21:56 +01:00
10 lines
184 B
Go
10 lines
184 B
Go
package common
|
|
|
|
type Repo struct {
|
|
Remote string `json:"remote"`
|
|
Host string `json:"host"`
|
|
Owner string `json:"owner"`
|
|
Name string `json:"name"`
|
|
URL string `json:"url"`
|
|
}
|