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