Initial example authentication to Azure ad

This commit is contained in:
Mike Conrad
2025-04-14 14:51:42 -04:00
commit 2964391f0a
4 changed files with 164 additions and 0 deletions

14
go.mod Normal file
View File

@ -0,0 +1,14 @@
module example/hello
go 1.24.2
require (
github.com/coreos/go-oidc v2.3.0+incompatible
golang.org/x/oauth2 v0.29.0
)
require (
github.com/pquerna/cachecontrol v0.2.0 // indirect
golang.org/x/crypto v0.37.0 // indirect
gopkg.in/go-jose/go-jose.v2 v2.6.3 // indirect
)