15 lines
260 B
Go
15 lines
260 B
Go
|
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
|
||
|
}
|