mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
29 lines
800 B
Go
29 lines
800 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
// package featureset provides a way to check whether a feature is enabled in the current build.
|
|
package featureset
|
|
|
|
// Edition is the edition of a build.
|
|
type Edition int
|
|
|
|
const (
|
|
// EditionOSS is the open-source software edition.
|
|
EditionOSS Edition = iota
|
|
// EditionEnterprise is the enterprise edition.
|
|
EditionEnterprise
|
|
)
|
|
|
|
// CanFetchMeasurements returns whether the current build can fetch measurements.
|
|
const CanFetchMeasurements = canFetchMeasurements
|
|
|
|
// CanUpgradeCheck returns whether the current build can check for upgrades.
|
|
// This also includes fetching new measurements.
|
|
const CanUpgradeCheck = canUpgradeCheck
|
|
|
|
// CurrentEdition is the edition of the current build.
|
|
const CurrentEdition = edition
|