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
|
|
|
|
|
2021-12-21 20:15:27 +08:00
|
|
|
_ "cloud.google.com/go/kms/apiv1"
|
2021-11-10 01:33:54 +08:00
|
|
|
_ "github.com/Azure/azure-sdk-for-go/services/keyvault/v7.1/keyvault"
|
|
|
|
_ "github.com/Azure/go-autorest/autorest"
|
2020-10-08 22:42:55 +08:00
|
|
|
_ "github.com/beevik/etree"
|
2020-12-29 23:37:20 +08:00
|
|
|
_ "github.com/cortexproject/cortex/pkg/util"
|
2019-07-05 18:27:14 +08:00
|
|
|
_ "github.com/crewjam/saml"
|
2019-04-16 21:26:39 +08:00
|
|
|
_ "github.com/gobwas/glob"
|
2021-04-30 01:29:42 +08:00
|
|
|
_ "github.com/grafana/loki/clients/pkg/promtail/client"
|
2020-08-25 17:52:21 +08:00
|
|
|
_ "github.com/grafana/loki/pkg/logproto"
|
2020-08-28 21:33:21 +08:00
|
|
|
_ "github.com/grpc-ecosystem/go-grpc-middleware"
|
2019-08-31 00:14:32 +08:00
|
|
|
_ "github.com/jung-kurt/gofpdf"
|
2019-12-11 21:44:29 +08:00
|
|
|
_ "github.com/linkedin/goavro/v2"
|
2021-08-14 00:44:56 +08:00
|
|
|
_ "github.com/m3db/prometheus_remote_client_golang/promremote"
|
2019-11-01 23:54:44 +08:00
|
|
|
_ "github.com/pkg/errors"
|
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"
|
2020-10-08 22:42:55 +08:00
|
|
|
_ "github.com/russellhaering/goxmldsig"
|
2019-07-05 18:27:14 +08:00
|
|
|
_ "github.com/stretchr/testify/require"
|
2022-01-04 20:56:34 +08:00
|
|
|
_ "github.com/vectordotdev/go-datemath"
|
2020-12-08 23:22:24 +08:00
|
|
|
_ "golang.org/x/time/rate"
|
2018-09-29 06:01:37 +08:00
|
|
|
_ "gopkg.in/square/go-jose.v2"
|
|
|
|
)
|
|
|
|
|
2018-07-02 19:33:39 +08:00
|
|
|
var IsEnterprise bool = false
|