1
0
mirror of https://github.com/drone/drone-cli.git synced 2025-07-11 06:34:22 +02:00
drone-cli/common/repo.go
2015-03-15 13:38:14 -07:00

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"`
}