2018-04-27 13:41:58 +02:00
|
|
|
package extensions
|
|
|
|
|
|
2018-09-28 18:01:37 -04:00
|
|
|
import (
|
2019-08-30 18:14:32 +02:00
|
|
|
// Upgrade ldapsync from cron to cron.v3 and
|
|
|
|
|
// remove the cron (v1) dependency
|
|
|
|
|
|
2020-10-08 17:42:55 +03:00
|
|
|
_ "github.com/beevik/etree"
|
2020-12-29 16:37:20 +01:00
|
|
|
_ "github.com/cortexproject/cortex/pkg/util"
|
2019-07-05 11:27:14 +01:00
|
|
|
_ "github.com/crewjam/saml"
|
2019-04-16 15:26:39 +02:00
|
|
|
_ "github.com/gobwas/glob"
|
2019-11-01 14:56:12 +01:00
|
|
|
"github.com/grafana/grafana/pkg/registry"
|
2020-01-15 14:50:44 +01:00
|
|
|
"github.com/grafana/grafana/pkg/services/licensing"
|
2020-08-25 11:52:21 +02:00
|
|
|
_ "github.com/grafana/loki/pkg/logproto"
|
2020-08-28 15:33:21 +02:00
|
|
|
_ "github.com/grpc-ecosystem/go-grpc-middleware"
|
2019-08-30 18:14:32 +02:00
|
|
|
_ "github.com/jung-kurt/gofpdf"
|
2019-12-11 14:44:29 +01:00
|
|
|
_ "github.com/linkedin/goavro/v2"
|
2019-11-01 16:54:44 +01:00
|
|
|
_ "github.com/pkg/errors"
|
2019-04-26 15:47:16 +03:00
|
|
|
_ "github.com/robfig/cron"
|
2019-08-30 18:14:32 +02:00
|
|
|
_ "github.com/robfig/cron/v3"
|
2020-10-08 17:42:55 +03:00
|
|
|
_ "github.com/russellhaering/goxmldsig"
|
2019-07-05 11:27:14 +01:00
|
|
|
_ "github.com/stretchr/testify/require"
|
2020-03-26 10:26:47 +01:00
|
|
|
_ "github.com/timberio/go-datemath"
|
2020-12-08 16:22:24 +01:00
|
|
|
_ "golang.org/x/time/rate"
|
2018-09-28 18:01:37 -04:00
|
|
|
_ "gopkg.in/square/go-jose.v2"
|
|
|
|
|
)
|
|
|
|
|
|
2019-11-01 14:56:12 +01:00
|
|
|
func init() {
|
2020-01-15 14:50:44 +01:00
|
|
|
registry.RegisterService(&licensing.OSSLicensingService{})
|
2019-11-01 14:56:12 +01:00
|
|
|
}
|
|
|
|
|
|
2018-07-02 04:33:39 -07:00
|
|
|
var IsEnterprise bool = false
|