package gitea import "fmt" type Repository struct { Id uint Name string Owner string Full_name string } func NewRepository(name, owner string) (repo Repository) { repo.Name = name repo.Owner = owner repo.Full_name = fmt.Sprintf("%s/%s", owner, name) return }