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

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
}