-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
124 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,50 @@ | ||
module funnel | ||
|
||
go 1.16 | ||
go 1.22.9 | ||
|
||
require ( | ||
github.com/PuerkitoBio/goquery v1.6.0 | ||
github.com/gin-gonic/gin v1.6.3 | ||
github.com/go-playground/validator/v10 v10.4.0 // indirect | ||
github.com/go-redis/redis v6.15.9+incompatible | ||
github.com/joho/godotenv v1.3.0 | ||
github.com/json-iterator/go v1.1.10 // indirect | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/spf13/viper v1.19.0 | ||
golang.org/x/net v0.23.0 | ||
golang.org/x/text v0.14.0 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/cascadia v1.1.0 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/gin-contrib/sse v0.1.0 // indirect | ||
github.com/go-playground/locales v0.13.0 // indirect | ||
github.com/go-playground/universal-translator v0.17.0 // indirect | ||
github.com/go-playground/validator/v10 v10.4.0 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/leodido/go-urn v1.2.0 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/onsi/ginkgo v1.14.2 // indirect | ||
github.com/onsi/gomega v1.10.3 // indirect | ||
github.com/stretchr/testify v1.6.1 // indirect | ||
github.com/ugorji/go v1.1.13 // indirect | ||
golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0 // indirect | ||
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b | ||
golang.org/x/sys v0.0.0-20201009025420-dfb3f7c4e634 // indirect | ||
golang.org/x/text v0.3.4 | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
github.com/pelletier/go-toml/v2 v2.2.2 // indirect | ||
github.com/sagikazarmark/locafero v0.4.0 // indirect | ||
github.com/sagikazarmark/slog-shim v0.1.0 // indirect | ||
github.com/sourcegraph/conc v0.3.0 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
github.com/ugorji/go/codec v1.1.13 // indirect | ||
go.uber.org/atomic v1.9.0 // indirect | ||
go.uber.org/multierr v1.9.0 // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.