2018-04-27 06:41:58 -05:00
|
|
|
package extensions
|
|
|
|
|
2018-09-28 17:01:37 -05:00
|
|
|
import (
|
2021-12-21 06:15:27 -06:00
|
|
|
_ "cloud.google.com/go/kms/apiv1"
|
2022-04-06 03:19:04 -05:00
|
|
|
_ "github.com/Azure/azure-sdk-for-go/sdk/azidentity"
|
|
|
|
_ "github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys"
|
2021-11-09 11:33:54 -06:00
|
|
|
_ "github.com/Azure/azure-sdk-for-go/services/keyvault/v7.1/keyvault"
|
|
|
|
_ "github.com/Azure/go-autorest/autorest"
|
2022-04-06 03:19:04 -05:00
|
|
|
_ "github.com/Azure/go-autorest/autorest/adal"
|
2020-10-08 09:42:55 -05:00
|
|
|
_ "github.com/beevik/etree"
|
2022-06-30 13:55:33 -05:00
|
|
|
_ "github.com/blugelabs/bluge"
|
|
|
|
_ "github.com/blugelabs/bluge_segment_api"
|
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"
|
2022-04-06 03:19:04 -05:00
|
|
|
_ "github.com/googleapis/gax-go/v2"
|
|
|
|
_ "github.com/grafana/dskit/backoff"
|
|
|
|
_ "github.com/grafana/dskit/flagext"
|
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"
|
2021-08-13 11:44:56 -05:00
|
|
|
_ "github.com/m3db/prometheus_remote_client_golang/promremote"
|
2019-11-01 10:54:44 -05:00
|
|
|
_ "github.com/pkg/errors"
|
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"
|
2022-01-04 06:56:34 -06:00
|
|
|
_ "github.com/vectordotdev/go-datemath"
|
2020-12-08 09:22:24 -06:00
|
|
|
_ "golang.org/x/time/rate"
|
2022-04-06 03:19:04 -05:00
|
|
|
_ "google.golang.org/genproto/googleapis/cloud/kms/v1"
|
2018-09-28 17:01:37 -05:00
|
|
|
_ "gopkg.in/square/go-jose.v2"
|
|
|
|
)
|
|
|
|
|
2018-07-02 06:33:39 -05:00
|
|
|
var IsEnterprise bool = false
|