mirror of
https://github.com/gabrie30/ghorg.git
synced 2025-08-09 15:57:09 +02:00
* add `make fmt` to format go code * use interface * move all SCM things into scm package
10 lines
133 B
Go
10 lines
133 B
Go
package scm
|
|
|
|
// Repo represents an SCM repo
|
|
type Repo struct {
|
|
Name string
|
|
Path string
|
|
URL string
|
|
CloneURL string
|
|
}
|