2018-04-27 13:41:58 +02:00
|
|
|
package extensions
|
|
|
|
|
|
2018-09-28 18:01:37 -04:00
|
|
|
import (
|
2021-12-21 14:15:27 +02:00
|
|
|
_ "cloud.google.com/go/kms/apiv1"
|
2023-07-14 15:10:46 +01:00
|
|
|
_ "cloud.google.com/go/kms/apiv1/kmspb"
|
2022-04-06 10:19:04 +02:00
|
|
|
_ "github.com/Azure/azure-sdk-for-go/sdk/azidentity"
|
|
|
|
|
_ "github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys"
|
2021-11-09 18:33:54 +01:00
|
|
|
_ "github.com/Azure/azure-sdk-for-go/services/keyvault/v7.1/keyvault"
|
|
|
|
|
_ "github.com/Azure/go-autorest/autorest"
|
2022-04-06 10:19:04 +02:00
|
|
|
_ "github.com/Azure/go-autorest/autorest/adal"
|
2020-10-08 17:42:55 +03:00
|
|
|
_ "github.com/beevik/etree"
|
2022-06-30 20:55:33 +02:00
|
|
|
_ "github.com/blugelabs/bluge"
|
|
|
|
|
_ "github.com/blugelabs/bluge_segment_api"
|
2019-07-05 11:27:14 +01:00
|
|
|
_ "github.com/crewjam/saml"
|
2023-03-06 14:12:51 +00:00
|
|
|
_ "github.com/go-jose/go-jose/v3"
|
2019-04-16 15:26:39 +02:00
|
|
|
_ "github.com/gobwas/glob"
|
2022-04-06 10:19:04 +02:00
|
|
|
_ "github.com/googleapis/gax-go/v2"
|
2024-04-25 17:25:48 +02:00
|
|
|
_ "github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus"
|
|
|
|
|
_ "github.com/grpc-ecosystem/go-grpc-middleware/v2"
|
2024-04-09 11:39:25 -04:00
|
|
|
_ "github.com/hashicorp/go-multierror"
|
|
|
|
|
_ "github.com/hashicorp/golang-lru/v2"
|
2019-12-11 14:44:29 +01:00
|
|
|
_ "github.com/linkedin/goavro/v2"
|
2021-08-13 10:44:56 -06:00
|
|
|
_ "github.com/m3db/prometheus_remote_client_golang/promremote"
|
2024-07-11 11:50:40 +02:00
|
|
|
_ "github.com/phpdave11/gofpdi"
|
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"
|
2024-09-27 09:04:35 +03:00
|
|
|
_ "github.com/spf13/cobra" // used by the standalone apiserver cli
|
2019-07-05 11:27:14 +01:00
|
|
|
_ "github.com/stretchr/testify/require"
|
2020-12-08 16:22:24 +01:00
|
|
|
_ "golang.org/x/time/rate"
|
2024-04-25 20:52:09 +02:00
|
|
|
_ "xorm.io/builder"
|
2024-09-27 09:04:35 +03:00
|
|
|
|
|
|
|
|
_ "github.com/grafana/dskit/backoff"
|
|
|
|
|
_ "github.com/grafana/dskit/flagext"
|
|
|
|
|
_ "github.com/grafana/e2e"
|
|
|
|
|
_ "github.com/grafana/gofpdf"
|
|
|
|
|
_ "github.com/grafana/gomemcache/memcache"
|
2018-09-28 18:01:37 -04:00
|
|
|
)
|
|
|
|
|
|
2018-07-02 04:33:39 -07:00
|
|
|
var IsEnterprise bool = false
|