mirror of
https://github.com/pikami/rss-dl.git
synced 2025-12-22 02:20:03 +00:00
Initial commit
This commit is contained in:
11
structs/feed_details.go
Normal file
11
structs/feed_details.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package structs
|
||||
|
||||
// FeedDetails - Struct for outputing feed details summary
|
||||
type FeedDetails struct {
|
||||
Title string
|
||||
Description string
|
||||
Link string
|
||||
Updated string
|
||||
Language string
|
||||
Categories []string
|
||||
}
|
||||
13
structs/item_details.go
Normal file
13
structs/item_details.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package structs
|
||||
|
||||
// ItemDetails - Struct for outputing item details summary
|
||||
type ItemDetails struct {
|
||||
Title string
|
||||
Description string
|
||||
Content string
|
||||
Link string
|
||||
Updated string
|
||||
Published string
|
||||
GUID string
|
||||
Categories []string
|
||||
}
|
||||
Reference in New Issue
Block a user