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 8package main 9 10import ( 11 "github.com/gitpod-io/gitpod/agent-smith/cmd" 12) 13 14func main() { 15 cmd.Execute() 16} 17 18