2018-04-27 19:41:58 +08:00
|
|
|
package extensions
|
|
|
|
|
2018-09-29 06:01:37 +08:00
|
|
|
import (
|
2019-08-31 00:14:32 +08:00
|
|
|
// Upgrade ldapsync from cron to cron.v3 and
|
|
|
|
// remove the cron (v1) dependency
|
|
|
|
|
2019-07-05 18:27:14 +08:00
|
|
|
_ "github.com/crewjam/saml"
|
2019-04-16 21:26:39 +08:00
|
|
|
_ "github.com/gobwas/glob"
|
2019-11-01 21:56:12 +08:00
|
|
|
"github.com/grafana/grafana/pkg/models"
|
|
|
|
"github.com/grafana/grafana/pkg/registry"
|
2019-08-31 00:14:32 +08:00
|
|
|
_ "github.com/jung-kurt/gofpdf"
|
2019-04-26 20:47:16 +08:00
|
|
|
_ "github.com/robfig/cron"
|
2019-08-31 00:14:32 +08:00
|
|
|
_ "github.com/robfig/cron/v3"
|
2019-07-05 18:27:14 +08:00
|
|
|
_ "github.com/stretchr/testify/require"
|
2018-09-29 06:01:37 +08:00
|
|
|
_ "gopkg.in/square/go-jose.v2"
|
|
|
|
)
|
|
|
|
|
2019-11-01 21:56:12 +08:00
|
|
|
func init() {
|
|
|
|
registry.RegisterService(&models.OSSLicensingService{})
|
|
|
|
}
|
|
|
|
|
2018-07-02 19:33:39 +08:00
|
|
|
var IsEnterprise bool = false
|