0
0
mirror of https://github.com/thegeeklab/github-releases-notifier.git synced 2024-09-21 16:42:46 +02:00
github-releases-notifier/repository.go

14 lines
206 B
Go
Raw Normal View History

2017-08-08 12:08:16 +02:00
package main
import "net/url"
// Repository on GitHub.
type Repository struct {
ID string
Name string
Owner string
Description string
URL url.URL
Release Release
}