mirror of
https://github.com/thegeeklab/github-releases-notifier.git
synced 2024-11-13 01:30:40 +00:00
14 lines
207 B
Go
14 lines
207 B
Go
package model
|
|
|
|
import "net/url"
|
|
|
|
// Repository on GitHub.
|
|
type Repository struct {
|
|
ID string
|
|
Name string
|
|
Owner string
|
|
Description string
|
|
URL url.URL
|
|
Release Release
|
|
}
|