mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 01:16:31 -06:00
3fabbbff4d
Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
20 lines
420 B
Go
20 lines
420 B
Go
package models
|
|
|
|
type Licensing interface {
|
|
// HasValidLicense is true if a valid license exists
|
|
HasValidLicense() bool
|
|
|
|
// HasLicense is true if there is a license provided
|
|
HasLicense() bool
|
|
|
|
// Expiry returns the unix epoch timestamp when the license expires, or 0 if no valid license is provided
|
|
Expiry() int64
|
|
|
|
// Return edition
|
|
Edition() string
|
|
|
|
LicenseURL(user *SignedInUser) string
|
|
|
|
StateInfo() string
|
|
}
|