1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/github/github_repo.go
2018-04-18 16:57:36 -07:00

18 lines
215 B
Go

package github
import ()
type GithubRepo struct {
Name string
Owner string
}
func NewGithubRepo(owner string, name string) *GithubRepo {
repo := GithubRepo{
Name: name,
Owner: owner,
}
return &repo
}