James Tombleson
333a4f5345
* ran go mod tity * updated formatting and moved to using some common errors * some common source errors * bumped go version * a bulk of the work has been completed to parse twitch videos/users * Added twitch config values * added common errors * moved the scheduler to its own package to get it out of main and also start adding tests * added a new err for invalid author images * Updated an error used * tests updated to avoid name duplication * new func to replace the cached source recor and updated getcontent to return collected posts * updated scheduler ref * moved to services/cron
29 lines
968 B
Modula-2
29 lines
968 B
Modula-2
module github.com/jtom38/newsbot/collector
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/PuerkitoBio/goquery v1.8.0
|
|
github.com/go-chi/chi/v5 v5.0.7
|
|
github.com/go-rod/rod v0.105.1
|
|
github.com/google/uuid v1.3.0
|
|
github.com/joho/godotenv v1.4.0
|
|
github.com/mmcdole/gofeed v1.1.3
|
|
github.com/nicklaw5/helix/v2 v2.4.0
|
|
github.com/robfig/cron/v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/cascadia v1.3.1 // indirect
|
|
github.com/golang-jwt/jwt/v4 v4.4.1 // indirect
|
|
github.com/json-iterator/go v1.1.10 // indirect
|
|
github.com/mmcdole/goxpp v0.0.0-20181012175147-0068e33feabf // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
|
|
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
|
|
github.com/ysmood/goob v0.4.0 // indirect
|
|
github.com/ysmood/gson v0.7.1 // indirect
|
|
github.com/ysmood/leakless v0.7.0 // indirect
|
|
golang.org/x/net v0.0.0-20210916014120-12bc252f5db8 // indirect
|
|
golang.org/x/text v0.3.6 // indirect
|
|
)
|