ghorg/scm/structs.go
6543 f5f10e7d22
Refactor: Client use interface implementation (#97)
* add `make fmt` to format go code
* use interface
* move all SCM things into scm package
2020-10-11 16:53:53 -07:00

10 lines
133 B
Go

package scm
// Repo represents an SCM repo
type Repo struct {
Name string
Path string
URL string
CloneURL string
}