Prva verzija - klix scraper

This commit is contained in:
Senad Uka
2022-02-10 21:11:13 +01:00
parent 08f0de07c3
commit a040320827
13 changed files with 348 additions and 0 deletions

13
internal/model/model.go Normal file
View File

@@ -0,0 +1,13 @@
package model
type ScrapedArticle struct {
Title string
Content string
Slug string
OriginalUrl string
SourceId int
}
const (
KlixSource = 1
)