initial commit

This commit is contained in:
2024-12-07 03:53:46 -05:00
commit cbd6682257
9 changed files with 370 additions and 0 deletions

14
article.go Normal file
View File

@@ -0,0 +1,14 @@
package extractor
type Article struct {
Title string
Content string
TextContent string
Length int
Excerpt string
Byline string
Dir string
SiteName string
Lang string
PublishedTime string
}