mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
27 lines
574 B
Go
27 lines
574 B
Go
package models
|
|
|
|
type Licensing interface {
|
|
// Expiry returns the unix epoch timestamp when the license expires, or 0 if no valid license is provided
|
|
Expiry() int64
|
|
|
|
// Return edition
|
|
Edition() string
|
|
|
|
// Used to build content delivery URL
|
|
ContentDeliveryPrefix() string
|
|
|
|
LicenseURL(showAdminLicensingPage bool) string
|
|
|
|
StateInfo() string
|
|
|
|
// List the enabled features
|
|
EnabledFeatures() map[string]bool
|
|
|
|
FeatureEnabled(feature string) bool
|
|
}
|
|
|
|
type LicenseEnvironment interface {
|
|
// Environment is a map of environment variables
|
|
Environment() map[string]string
|
|
}
|