mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 11:44:26 -06:00
d567f199dd
* Move the grabpl build-backend command and clean it up a bit
10 lines
170 B
Go
10 lines
170 B
Go
package config
|
|
|
|
type Edition string
|
|
|
|
const (
|
|
EditionOSS Edition = "oss"
|
|
EditionEnterprise Edition = "enterprise"
|
|
EditionEnterprise2 Edition = "enterprise2"
|
|
)
|