mirror of
https://github.com/grafana/grafana.git
synced 2025-08-06 20:59:35 +08:00

* Add SAML configuration options * Add crewjam/saml as a depdency Needed as part of the enterprise SAML integration. * Vendor github.com/stretchr/testify/require The package require implements the same assertions as the `assert` package but stops test execution when a test fails.
12 lines
220 B
Go
12 lines
220 B
Go
package extensions
|
|
|
|
import (
|
|
_ "github.com/crewjam/saml"
|
|
_ "github.com/gobwas/glob"
|
|
_ "github.com/robfig/cron"
|
|
_ "github.com/stretchr/testify/require"
|
|
_ "gopkg.in/square/go-jose.v2"
|
|
)
|
|
|
|
var IsEnterprise bool = false
|