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