Skip to content

Commit 41ae667

Browse files
committed
Updated deps. Added saving and loading cookies
1 parent 7e3ac9b commit 41ae667

File tree

5 files changed

+176
-18
lines changed

5 files changed

+176
-18
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
bin/
2+
cookie.txt

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.PHONY: build install
2+
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ go 1.16
55
require (
66
github.com/alecthomas/units v0.0.0-20210208195552-ff826a37aa15 // indirect
77
github.com/go-kit/kit v0.10.0
8-
github.com/mxschmitt/playwright-go v0.1100.1-0.20210430103100-de638a4c485a
8+
github.com/playwright-community/playwright-go v0.4401.0
99
gopkg.in/alecthomas/kingpin.v2 v2.2.6
1010
)

0 commit comments

Comments
 (0)