mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
1a4be4af8c
* Enterprise: add dependencies for upcoming features See enterprise issues
17 lines
367 B
Go
17 lines
367 B
Go
package extensions
|
|
|
|
import (
|
|
// Upgrade ldapsync from cron to cron.v3 and
|
|
// remove the cron (v1) dependency
|
|
|
|
_ "github.com/crewjam/saml"
|
|
_ "github.com/gobwas/glob"
|
|
_ "github.com/jung-kurt/gofpdf"
|
|
_ "github.com/robfig/cron"
|
|
_ "github.com/robfig/cron/v3"
|
|
_ "github.com/stretchr/testify/require"
|
|
_ "gopkg.in/square/go-jose.v2"
|
|
)
|
|
|
|
var IsEnterprise bool = false
|