mirror of
https://github.com/thegeeklab/github-releases-notifier.git
synced 2024-11-13 01:30:40 +00:00
16 lines
219 B
Go
16 lines
219 B
Go
|
package main
|
||
|
|
||
|
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
|
||
|
}
|