-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (22 loc) · 948 Bytes
/
go.mod
File metadata and controls
26 lines (22 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module heimatcli
go 1.18
replace github.com/AzureAD/microsoft-authentication-library-for-go v0.7.0 => github.com/ehasnain/microsoft-authentication-library-for-go v0.7.1
require (
github.com/AzureAD/microsoft-authentication-library-for-go v0.7.0
github.com/alexeyco/simpletable v0.0.0-20200730140406-5bb24159ccfb
github.com/briandowns/spinner v1.12.0
github.com/c-bata/go-prompt v0.2.5
github.com/golang-jwt/jwt/v4 v4.4.2
)
require (
github.com/fatih/color v1.7.0 // indirect
github.com/google/uuid v1.1.1 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mattn/go-tty v0.0.3 // indirect
github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4 // indirect
github.com/pkg/term v1.1.0 // indirect
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect
)