Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/ee/agent-smith/main.go
2497 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
//go:build !sentinel
6
// +build !sentinel
7
8
package main
9
10
import (
11
"github.com/gitpod-io/gitpod/agent-smith/cmd"
12
)
13
14
func main() {
15
cmd.Execute()
16
}
17
18