
- ensure all scraper functions have a `api.XYZ` version and a package-level convenience function - isolate `the_api` to top-level convenience functions, in preparation for removal - move a bunch of scraper functions around to be nearby their related functions - new ErrLoginRequired - remove obsolete APIv1 stuff (Feed, TweetDetail) - rename scraper function GetUserFeedGraphqlFor => GetUserFeed - fix go.mod Go version incorrectly claiming it's compatible with Go 1.16 (should be Go 1.17)
34 lines
1.1 KiB
Modula-2
34 lines
1.1 KiB
Modula-2
module gitlab.com/offline-twitter/twitter_offline_engine
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/Masterminds/sprig/v3 v3.2.3
|
|
github.com/andybalholm/cascadia v1.3.2
|
|
github.com/go-test/deep v1.0.7
|
|
github.com/google/uuid v1.1.1
|
|
github.com/jarcoal/httpmock v1.1.0
|
|
github.com/jmoiron/sqlx v1.3.4
|
|
github.com/mattn/go-sqlite3 v1.14.7
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/stretchr/testify v1.7.0
|
|
golang.org/x/net v0.9.0
|
|
golang.org/x/term v0.7.0
|
|
)
|
|
|
|
require (
|
|
github.com/Masterminds/goutils v1.1.1 // indirect
|
|
github.com/Masterminds/semver/v3 v3.2.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/huandu/xstrings v1.3.3 // indirect
|
|
github.com/imdario/mergo v0.3.11 // indirect
|
|
github.com/mitchellh/copystructure v1.0.0 // indirect
|
|
github.com/mitchellh/reflectwalk v1.0.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/shopspring/decimal v1.2.0 // indirect
|
|
github.com/spf13/cast v1.3.1 // indirect
|
|
golang.org/x/crypto v0.3.0 // indirect
|
|
golang.org/x/sys v0.7.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
|
|
)
|