mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
30771f25bf
Goavro doesn't compile on 32-bit systems.
This reverts commit 413be3a6a0
.
24 lines
552 B
Go
24 lines
552 B
Go
package extensions
|
|
|
|
import (
|
|
// Upgrade ldapsync from cron to cron.v3 and
|
|
// remove the cron (v1) dependency
|
|
|
|
_ "github.com/crewjam/saml"
|
|
_ "github.com/gobwas/glob"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/registry"
|
|
_ "github.com/jung-kurt/gofpdf"
|
|
_ "github.com/pkg/errors"
|
|
_ "github.com/robfig/cron"
|
|
_ "github.com/robfig/cron/v3"
|
|
_ "github.com/stretchr/testify/require"
|
|
_ "gopkg.in/square/go-jose.v2"
|
|
)
|
|
|
|
func init() {
|
|
registry.RegisterService(&models.OSSLicensingService{})
|
|
}
|
|
|
|
var IsEnterprise bool = false
|