mirror of
https://github.com/thegeeklab/github-releases-notifier.git
synced 2024-11-10 23:00:38 +00:00
17 lines
244 B
Go
17 lines
244 B
Go
package model
|
|
|
|
import (
|
|
"net/url"
|
|
"time"
|
|
)
|
|
|
|
// Release of a repository tagged via GitHub.
|
|
type Release struct {
|
|
ID string
|
|
Name string
|
|
Description string
|
|
URL url.URL
|
|
PublishedAt time.Time
|
|
IsPrerelease bool
|
|
}
|