Add support for Dublin Core

This commit is contained in:
Joakim Hellsén 2024-02-18 01:05:30 +01:00
commit 8f7690d8f4
9 changed files with 800 additions and 173 deletions

View file

@ -49,6 +49,10 @@ func AddFeedToDB(feedURL string) error {
log.Printf("Adding images to the database")
addFeedImages(ctx, feed, newFeed)
// Add Dublin Core to the database
log.Printf("Adding Dublin Core to the database")
createFeedDublinCore(ctx, feed, newFeed)
log.Printf("Feed added to database")
return nil
}