works with ubuntu

This commit is contained in:
bel
2020-01-29 03:44:44 +00:00
commit ccfefd5b77
9 changed files with 285 additions and 0 deletions

9
feed/item.go Normal file
View File

@@ -0,0 +1,9 @@
package feed
import "time"
type Item struct {
Link string
Date time.Time
Title string
}