We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e3ac9b commit 41ae667Copy full SHA for 41ae667
.gitignore
@@ -0,0 +1,2 @@
1
+bin/
2
+cookie.txt
Makefile
@@ -0,0 +1,7 @@
+.PHONY: build install
+
3
+build:
4
+ go build -o bin/go-openconnect-sso main.go
5
6
+install: build
7
+ cp bin/go-openconnect-sso ~/go/bin/
go.mod
@@ -5,6 +5,6 @@ go 1.16
require (
github.com/alecthomas/units v0.0.0-20210208195552-ff826a37aa15 // indirect
github.com/go-kit/kit v0.10.0
8
- github.com/mxschmitt/playwright-go v0.1100.1-0.20210430103100-de638a4c485a
+ github.com/playwright-community/playwright-go v0.4401.0
9
gopkg.in/alecthomas/kingpin.v2 v2.2.6
10
)
0 commit comments