go-jobscraper/grabber/grabber-structs.go

16 lines
212 B
Go
Raw Permalink Normal View History

2024-04-26 16:13:07 +00:00
package grabber
import "time"
type RssItem struct {
Title string
URL string
Date time.Time
Link string
Summary string
Id string
Company string
Location string
Salary string
}