youtuber/feed/item.go

10 lines
95 B
Go
Executable File

package feed
import "time"
type Item struct {
Link string
Date time.Time
Title string
}