-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from holyhope/login-method/bootstrap
feat(login) Add login methods and example
- Loading branch information
Showing
42 changed files
with
3,476 additions
and
110 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
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
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,3 +1,63 @@ | ||
module github.com/holyhope/digiposte-go-sdk | ||
|
||
go 1.19 | ||
|
||
require ( | ||
github.com/Davincible/chromedp-undetected v1.3.8 | ||
github.com/chromedp/cdproto v0.0.0-20231205062650-00455a960d61 | ||
github.com/chromedp/chromedp v0.9.3 | ||
github.com/go-oauth2/oauth2/v4 v4.5.2 | ||
github.com/go-rod/rod v0.114.7 | ||
github.com/maxbrunsfeld/counterfeiter/v6 v6.7.0 | ||
github.com/onsi/ginkgo/v2 v2.13.0 | ||
github.com/onsi/gomega v1.30.0 | ||
github.com/pquerna/otp v1.4.0 | ||
golang.org/x/oauth2 v0.13.0 | ||
golang.org/x/time v0.5.0 | ||
) | ||
|
||
require ( | ||
github.com/Xuanwo/go-locale v1.1.0 // indirect | ||
github.com/boombuler/barcode v1.0.1 // indirect | ||
github.com/chromedp/sysutil v1.0.0 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect | ||
github.com/gobwas/httphead v0.1.0 // indirect | ||
github.com/gobwas/pool v0.2.1 // indirect | ||
github.com/gobwas/ws v1.3.1 // indirect | ||
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
github.com/google/pprof v0.0.0-20231212022811-ec68065c825e // indirect | ||
github.com/google/uuid v1.4.0 // indirect | ||
github.com/gopherjs/gopherjs v1.17.2 // indirect | ||
github.com/gorilla/websocket v1.5.1 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/klauspost/compress v1.17.2 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/rogpeppe/go-internal v1.12.0 // indirect | ||
github.com/stretchr/testify v1.8.4 // indirect | ||
github.com/tidwall/btree v1.7.0 // indirect | ||
github.com/tidwall/buntdb v1.3.0 // indirect | ||
github.com/tidwall/gjson v1.17.0 // indirect | ||
github.com/tidwall/grect v0.1.4 // indirect | ||
github.com/tidwall/match v1.1.1 // indirect | ||
github.com/tidwall/pretty v1.2.1 // indirect | ||
github.com/tidwall/rtred v0.1.2 // indirect | ||
github.com/tidwall/tinyqueue v0.1.1 // indirect | ||
github.com/ysmood/fetchup v0.2.3 // indirect | ||
github.com/ysmood/gson v0.7.3 // indirect | ||
github.com/ysmood/leakless v0.8.0 // indirect | ||
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect | ||
golang.org/x/mod v0.13.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/tools v0.14.0 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.