Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/test/pkg/report/features.go
2496 views
1
// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
2
// Licensed under the GNU Affero General Public License (AGPL).
3
// See License.AGPL.txt in the project root for license information.
4
5
package report
6
7
type Feature string
8
9
const (
10
FeatureExample Feature = "example"
11
FeatureResourceLimit Feature = "resource limit"
12
FeatureContentInit Feature = "content init"
13
FeatureDocker Feature = "docker"
14
FeatureDotfiles Feature = "dotfiles"
15
FeatureMultiRepos Feature = "multi repos"
16
FeaturePrebuild Feature = "prebuild"
17
)
18
19